From ac16176c20eab8f8fc4b0e2118c921c918dbda58 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 1 Jul 2017 23:20:47 -0500 Subject: [PATCH] Fixes deathgasping while being cloned (#1852) --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 18c0c9ca4b..a23fa66144 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -70,7 +70,7 @@ else if(eye_blurry) //blurry eyes heal slowly adjust_blurriness(-1) - if (getBrainLoss() >= 60 && stat != DEAD) + if (getBrainLoss() >= 60 && stat == CONSCIOUS) if(prob(3)) if(prob(25)) emote("drool")