From 6ff230c3cce2ed921573fa951d6e62b66ce8e97d Mon Sep 17 00:00:00 2001 From: HarpyEagle Date: Sun, 17 Apr 2016 01:17:19 -0400 Subject: [PATCH] Fixes paralysis not causing stat = UNCONSCIOUS --- code/modules/mob/living/carbon/human/life.dm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index a0ed4fd17f4..342fc9699f2 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -922,16 +922,16 @@ animate_tail_reset() adjustHalLoss(-3) - if(sleeping) - speech_problem_flag = 1 - handle_dreams() - if (mind) - //Are they SSD? If so we'll keep them asleep but work off some of that sleep var in case of stoxin or similar. - if(client || sleeping > 3) - AdjustSleeping(-1) - if( prob(2) && health && !hal_crit ) - spawn(0) - emote("snore") + if(sleeping) + speech_problem_flag = 1 + handle_dreams() + if (mind) + //Are they SSD? If so we'll keep them asleep but work off some of that sleep var in case of stoxin or similar. + if(client || sleeping > 3) + AdjustSleeping(-1) + if( prob(2) && health && !hal_crit ) + spawn(0) + emote("snore") //CONSCIOUS else stat = CONSCIOUS