Fixes Movement for Some Mobs

This commit is contained in:
Fox-McCloud
2017-05-28 01:38:29 -04:00
parent 1987522950
commit 8cd77f2935
15 changed files with 111 additions and 97 deletions
+4 -3
View File
@@ -1008,9 +1008,10 @@ var/list/slot_equipment_priority = list( \
drop_l_hand()
drop_r_hand()
/mob/proc/facedir(var/ndir)
if(!canface()) return 0
dir = ndir
/mob/proc/facedir(ndir)
if(!canface())
return 0
setDir(ndir)
client.move_delay += movement_delay()
return 1