From 007efb6d99698bb32d397db2a025a54d564904fe Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Thu, 7 Oct 2021 17:04:34 +0100 Subject: [PATCH] Airlock GC Fix (#16888) --- code/game/machinery/doors/airlock.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 47ad4480dce..3b907a9046c 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -178,6 +178,8 @@ About the new airlock wires panel: if(SSradio) SSradio.remove_object(src, frequency) radio_connection = null + for(var/datum/atom_hud/data/diagnostic/diag_hud in GLOB.huds) + diag_hud.remove_from_hud(src) return ..() /obj/machinery/door/airlock/handle_atom_del(atom/A)