mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
Orbit menu no longer bundles dead players with dead butterflies. (#14969)
This commit is contained in:
@@ -58,12 +58,14 @@
|
||||
|
||||
var/mob/M = poi
|
||||
if(istype(M))
|
||||
if(isnewplayer(M)) // People in the lobby screen; only have their ckey as a name.
|
||||
continue
|
||||
if(isobserver(M))
|
||||
ghosts += list(serialized)
|
||||
else if(M.stat == DEAD)
|
||||
dead += list(serialized)
|
||||
else if(M.mind == null)
|
||||
npcs += list(serialized)
|
||||
else if(M.stat == DEAD)
|
||||
dead += list(serialized)
|
||||
else
|
||||
alive += list(serialized)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user