From 13cb32fa7fa85743387af7daf4c9af7813c6e175 Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Mon, 8 Jun 2015 17:37:56 +0200 Subject: [PATCH] Another MayRespawn() fix. Being unable to reenter your body now allows you to respawn, even if your body lives. --- code/modules/mob/dead/observer/observer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index f65b07b2c79..c7dea3bb9d1 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -622,7 +622,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp mob/dead/observer/MayRespawn(var/feedback = 0) if(!client) return 0 - if(mind && mind.current && mind.current.stat != DEAD) + if(mind && mind.current && mind.current.stat != DEAD && can_reenter_corpse) if(feedback) src << "Your non-dead body prevent you from respawning." return 0