diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 347b82a816c..38f6bd5330c 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -15,6 +15,13 @@ QDEL_LIST_CONTENTS(stomach_contents) QDEL_LIST_CONTENTS(processing_patches) GLOB.carbon_list -= src + if(in_throw_mode) + toggle_throw_mode() + return ..() + +/mob/living/carbon/ghostize(can_reenter_corpse) + if(in_throw_mode) + toggle_throw_mode() return ..() /mob/living/carbon/handle_atom_del(atom/A)