From f97e047e3cf11abb003fe0d67efdded32d43430c Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Thu, 11 Dec 2014 21:00:00 +0100 Subject: [PATCH] Unconscious entities no longer considered dead. --- code/game/gamemodes/game_mode.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index c488f15f2e..80b3a7c113 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -159,11 +159,11 @@ if(M.client) clients++ if(ishuman(M)) - if(!M.stat) + if(M.stat != DEAD) surviving_humans++ if(M.loc && M.loc.loc && M.loc.loc.type in escape_locations) escaped_humans++ - if(!M.stat) + if(M.stat != DEAD) surviving_total++ if(M.loc && M.loc.loc && M.loc.loc.type in escape_locations) escaped_total++