makes morgue units not hold ghosts (#76685)

## About The Pull Request

makes them unable to hold any /mob/dead

## Why It's Good For The Game

Fixes #76632

## Changelog
🆑
fix: morgue units can no longer hold ghosts
/🆑
This commit is contained in:
jimmyl
2023-07-10 17:47:31 +01:00
committed by GitHub
parent 3b44a8b15c
commit 8aaa3e01b6
+2
View File
@@ -156,6 +156,8 @@ GLOBAL_LIST_EMPTY(bodycontainers) //Let them act as spawnpoints for revenants an
continue
else if(istype(AM, /obj/effect/dummy/phased_mob))
continue
else if(isdead(AM))
continue
AM.forceMove(src)
toggle_organ_decay(src)
update_appearance()