From 5ce0ae0516480969595f07d7cffd1ab3d4373ed3 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sat, 8 Aug 2015 04:15:41 -0400 Subject: [PATCH] Fixes Movement Speed Modifiers --- code/modules/mob/living/carbon/human/human_movement.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 8890ac9c94a..3f0009b7ce7 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -51,9 +51,9 @@ tally += 2*stance_damage //damaged/missing feet or legs is slow if(RUN in mutations) - tally = 0 + tally = -1 if(status_flags & IGNORESLOWDOWN) // make sure this is always at the end so we don't have ignore slowdown getting ignored itself - tally = 0 + tally = -1 if(status_flags & GOTTAGOFAST) tally -= 1