Skip to content

Commit

Permalink
Fix shuttle.intoTheSunset() throwing bad del errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Jun 22, 2023
1 parent 684f02c commit 0c78721
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/shuttle/helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0c78721

Please sign in to comment.