From ecff1847826e0e0401c5b5e2f5a76a839903e4bc Mon Sep 17 00:00:00 2001 From: Zonespace <41448081+Zonespace27@users.noreply.github.com> Date: Tue, 6 Jun 2023 16:33:29 -0700 Subject: [PATCH] Fixes space heater harddel (#75880) ## About The Pull Request Space heater `cell` variable wasn't being cleaned up --- code/game/machinery/spaceheater.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/spaceheater.dm b/code/game/machinery/spaceheater.dm index 528a62f2798..dcf323c0c40 100644 --- a/code/game/machinery/spaceheater.dm +++ b/code/game/machinery/spaceheater.dm @@ -72,6 +72,7 @@ /obj/machinery/space_heater/Destroy() SSair.stop_processing_machine(src) + QDEL_NULL(cell) return..() /obj/machinery/space_heater/on_construction()