Unconscious entities no longer considered dead.

This commit is contained in:
PsiOmega
2014-12-11 21:05:28 +01:00
parent 1e4572afd6
commit f97e047e3c
+2 -2
View File
@@ -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++