From 3f297879e53fc18952818878424c3011e32362ed Mon Sep 17 00:00:00 2001 From: Drulikar Date: Fri, 21 Jul 2023 14:43:15 -0700 Subject: [PATCH] Requiring a ghost is weird - they might come back --- code/game/objects/items/bodybag.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm index 4a0476bad8be..3b84d2433e88 100644 --- a/code/game/objects/items/bodybag.dm +++ b/code/game/objects/items/bodybag.dm @@ -131,7 +131,9 @@ dead_mobs += mob continue var/mob/living/carbon/human/human = mob - if(issynth(human) || (human.check_tod() && human.is_revivable() && human.get_ghost())) // revivable + if(issynth(human)) + continue + if(human.check_tod() && human.is_revivable()) // revivable continue dead_mobs += mob var/mob/living/mob_to_store