From 4e96a0a4061c9ee4a4e18bc4e21e41d093ea5d10 Mon Sep 17 00:00:00 2001 From: Pickle-Coding <58013024+Pickle-Coding@users.noreply.github.com> Date: Wed, 13 Mar 2024 23:10:24 +0000 Subject: [PATCH] Prevent bioware list deletion runtime for human destroy (what the fuck is a bioware?). (#81907) ## About The Pull Request Prevent bioware list deletion runtime (biowares remove themselves from the biowares list when deleted) by making it a lazy list delete. ## Why It's Good For The Game Removes a runtime. ## Changelog :cl: fix: Prevent runtime from humans with biowares gettingn deleted. /:cl: --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index cef7abf8c0a..ed408049e3c 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -61,7 +61,7 @@ /mob/living/carbon/human/Destroy() QDEL_NULL(physiology) if(biowares) - QDEL_LIST(biowares) + QDEL_LAZYLIST(biowares) GLOB.human_list -= src if (mob_mood)