Skip to content

Commit

Permalink
Requiring a ghost is weird - they might come back
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Jul 21, 2023
1 parent bd6101a commit 3f29787
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/game/objects/items/bodybag.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3f29787

Please sign in to comment.