From 799a5b79db2059e75d58f0c89d3ecf6130695178 Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Sun, 19 Apr 2015 17:34:37 +0200 Subject: [PATCH] Ensures new players cannot ghost by moving, really breaks things. --- code/modules/mob/mob_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm index cc50cfbde1e..b894bac182c 100644 --- a/code/modules/mob/mob_movement.dm +++ b/code/modules/mob/mob_movement.dm @@ -188,7 +188,7 @@ if(S.victim == mob) return - if(mob.stat==2) + if(mob.stat==DEAD && isliving(mob)) mob.ghostize() return