From 0c787214731fc7694bec0ddff4e90b27b5424bc5 Mon Sep 17 00:00:00 2001 From: Drulikar Date: Thu, 22 Jun 2023 07:02:35 -0700 Subject: [PATCH] Fix shuttle.intoTheSunset() throwing bad del errors --- code/modules/shuttle/helpers.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/shuttle/helpers.dm b/code/modules/shuttle/helpers.dm index 14cfcc3cd691..1d841581faa0 100644 --- a/code/modules/shuttle/helpers.dm +++ b/code/modules/shuttle/helpers.dm @@ -8,7 +8,8 @@ /datum/door_controller/aggregate/Destroy(force, ...) . = ..() - QDEL_NULL_LIST(door_controllers) + QDEL_LIST_ASSOC_VAL(door_controllers) + door_controllers = null /datum/door_controller/aggregate/proc/set_label(label) for(var/datum/door_controller/single/cont in door_controllers)