From 9e4398fa550fe546448d9767f59a760a543ec0fc Mon Sep 17 00:00:00 2001 From: Raeschen Date: Tue, 20 Feb 2024 16:20:18 +0100 Subject: [PATCH] Some more image qdel prevention (#7795) --- code/modules/mob/living/living.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index a70a4f537b..fae4c1b38f 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -54,6 +54,14 @@ if(tf_mob_holder) tf_mob_holder = null //VOREStation Addition End + //ChompEDIT START + if(selected_image) // prune out images + selected_image = null + if(hud_list) //prune out images in hud_list + for(var/item in hud_list) + if(item) + item = null + //ChompEDIT END qdel(selected_image) QDEL_NULL(vorePanel) //VOREStation Add