Fixes a bug where people who were in the lobby but not observers were considered non-survivors in shift-end feedback.

This commit is contained in:
PsiOmega
2014-09-05 11:00:47 +02:00
parent 7a228c9677
commit 98bc0d5f60
2 changed files with 7 additions and 2 deletions

View File

@@ -121,6 +121,11 @@ proc/isdeaf(A)
return (M.sdisabilities & DEAF) || M.ear_deaf
return 0
proc/isnewplayer(A)
if(istype(A, /mob/new_player))
return 1
return 0
proc/hasorgans(A)
return ishuman(A)