Fixes having more movespeed when xenos hug themselves

This commit is contained in:
CitadelStationBot
2017-05-19 12:31:59 -05:00
parent 88f1b8c428
commit 4430e7d0c3
@@ -17,4 +17,4 @@
/mob/living/carbon/alien/AdjustStunned(amount, updating = 1, ignore_canstun = 0)
. = ..()
if(!.)
move_delay_add = min(move_delay_add + round(amount / 2), 10)
move_delay_add = Clamp(move_delay_add + round(amount/2), 0, 10)