Merge pull request #7407 from Fox-McCloud/movement-fixes

Movement fixes
This commit is contained in:
tigercat2000
2017-05-28 11:49:50 -07:00
committed by GitHub
17 changed files with 101 additions and 101 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