From 7838d1b1476b5603b849b2fcf0a135b917dc8e3e Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Fri, 6 May 2016 18:02:09 -0400 Subject: [PATCH] living slowed --- code/modules/mob/living/living.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index e9647d0e82a..175f3d186c4 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -828,3 +828,11 @@ butcher_results.Remove(path) //In case you want to have things like simple_animals drop their butcher results on gib, so it won't double up below. visible_message("[user] butchers [src].") gib() + +/mob/living/movement_delay() + var/tally = 0 + + if(slowed) + tally += 10 + + return tally \ No newline at end of file