From 7cdbcc43b113b2eda0a0db3502669671d262ccf6 Mon Sep 17 00:00:00 2001 From: Charlie Nolan Date: Mon, 13 Jan 2025 09:36:51 -0800 Subject: [PATCH] Fix carbon/Destory runtime (#27959) Signed-off-by: Charlie Nolan --- code/modules/mob/living/carbon/carbon_procs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/carbon_procs.dm b/code/modules/mob/living/carbon/carbon_procs.dm index 1a7112ffe9a..60219a1527d 100644 --- a/code/modules/mob/living/carbon/carbon_procs.dm +++ b/code/modules/mob/living/carbon/carbon_procs.dm @@ -12,8 +12,8 @@ drop_item_to_ground(item, silent = TRUE) qdel(item) QDEL_LIST_CONTENTS(internal_organs) - QDEL_LIST_CONTENTS(stomach_contents) - QDEL_LIST_CONTENTS(processing_patches) + QDEL_LAZYLIST(stomach_contents) + QDEL_LAZYLIST(processing_patches) GLOB.carbon_list -= src if(in_throw_mode) toggle_throw_mode()