Merge pull request #1057 from Citadel-Station-13/upstream-merge-27395

[MIRROR] Fixes having more movespeed when xenos hug themselves
This commit is contained in:
LetterJay
2017-05-19 22:54:52 -05:00
committed by GitHub
@@ -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)