[MIRROR] Revert "Prevent SSinput from constantly requesting moving in-place" (#6352)

* Revert "prevent SSinput from constantly reporting null movements (#59558)" (#59650)

This reverts commit 6c2d17bb15.

Fucky movement fix oranges is literally threatening me.

I feel like I've messed up somewhere here...

Either way this is causing movements to be a bit fucky where one input counts as two in a direction.

* Revert "Prevent SSinput from constantly requesting moving in-place"

Co-authored-by: brotherbeyondd <68032262+brotherbeyondd@users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-06-16 22:23:09 +01:00
committed by GitHub
co-authored by brotherbeyondd
parent d2437a14b8
commit 2cef943f6f
2 changed files with 3 additions and 5 deletions
+3
View File
@@ -69,6 +69,9 @@
/client/Move(new_loc, direct)
if(world.time < move_delay) //do not move anything ahead of this check please
return FALSE
else
next_move_dir_add = 0
next_move_dir_sub = 0
var/old_move_delay = move_delay
move_delay = world.time + world.tick_lag //this is here because Move() can now be called mutiple times per tick
if(!mob || !mob.loc)