From d58a4fe8518761f45deeceac1f65b20bf9186b23 Mon Sep 17 00:00:00 2001 From: Belaya Date: Wed, 9 Jul 2025 20:08:13 -0500 Subject: [PATCH] Unbreak cloning for people who had their bodies deleted --- code/modules/mob/mob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index d700de554a..64cf82b55f 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -46,7 +46,7 @@ dispose_rendering() qdel(hud_used) QDEL_LIST(client_colours) - ghostize(can_reenter_corpse = FALSE) //False, since we're deleting it currently + ghostize() if(mind?.current == src) //Let's just be safe yeah? This will occasionally be cleared, but not always. Can't do it with ghostize without changing behavior mind.set_current(null) // if(mock_client)