From 0b9150652ac72ba48cf042c3d7e6cbec62a6ac75 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Thu, 18 Jan 2018 13:51:31 -0500 Subject: [PATCH] POLARIS: Lazily clear these lists --- code/modules/mob/living/carbon/human/human.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 83df433382c..449b2e9e1aa 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -57,11 +57,11 @@ for(var/organ in organs) qdel(organ) - list_layers.Cut() + LAZYCLEARLIST(list_layers) list_layers = null //Be free! - list_body.Cut() + LAZYCLEARLIST(list_body) list_body = null - list_huds.Cut() + LAZYCLEARLIST(list_huds) list_huds = null return ..()