From 61ff75dbbdd80a37eb40c31d0dffee1892d432d9 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sat, 30 Nov 2013 10:14:08 -0500 Subject: [PATCH] Bad check fix --- code/modules/mob/death.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/death.dm b/code/modules/mob/death.dm index 905652d40c5..8e6d2015aa2 100644 --- a/code/modules/mob/death.dm +++ b/code/modules/mob/death.dm @@ -17,7 +17,7 @@ gibs(loc, viruses, dna) dead_mob_list -= src - if(client && !src in respawnable_list) + if(client) respawnable_list += src spawn(15) if(animation) del(animation) @@ -44,7 +44,7 @@ new /obj/effect/decal/cleanable/ash(loc) dead_mob_list -= src - if(client && !src in respawnable_list) + if(client) respawnable_list += src spawn(15) if(animation) del(animation) @@ -56,6 +56,6 @@ living_mob_list -= src dead_mob_list += src - if(client && !src in respawnable_list) + if(client) respawnable_list += src return ..(gibbed)