diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index e9f000eb3f2..f65b07b2c79 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -620,9 +620,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp return 1 mob/dead/observer/MayRespawn(var/feedback = 0) - if(!client || !mind) + if(!client) return 0 - if(mind.current && mind.current.stat != DEAD) + if(mind && mind.current && mind.current.stat != DEAD) if(feedback) src << "Your non-dead body prevent you from respawning." return 0