From f135aa9ddfa416df4682177e6770e6bc50d75f89 Mon Sep 17 00:00:00 2001 From: Verkister Date: Mon, 4 Nov 2019 00:12:58 +0200 Subject: [PATCH] Fixes knocked out borgs never dying. (#6510) * Fixes knocked out borgs never dying. Fixes the borg life code making it so that applying any unconscious stat (1) on borgs would always permanently force their stat into 2(dead), which from that point onward will just skip the death proc when it eventually would become relevant. * Update life.dm --- code/modules/mob/living/silicon/robot/life.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index d00715526c..37182a8ee0 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -104,9 +104,8 @@ AdjustConfused(-1) - else //Dead. + else //Dead or just unconscious. src.blinded = 1 - src.stat = 2 if (src.stuttering) src.stuttering--