From a4b1ae4bf48436744668e91227a6f1d1274e4ace Mon Sep 17 00:00:00 2001 From: Vi3trice <80771500+Vi3trice@users.noreply.github.com> Date: Sat, 18 Sep 2021 20:00:02 -0400 Subject: [PATCH] The storage won't destroy its contents --- code/game/machinery/suit_storage_unit.dm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index b732986dd51..333baa9aa8d 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -284,11 +284,6 @@ /obj/machinery/suit_storage_unit/Destroy() SStgui.close_uis(wires) - QDEL_NULL(suit) - QDEL_NULL(helmet) - QDEL_NULL(mask) - QDEL_NULL(boots) - QDEL_NULL(storage) QDEL_NULL(wires) return ..()