From ac122ee0784e9fa2caf9ae5e803f7ebf5fb6bde9 Mon Sep 17 00:00:00 2001 From: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Date: Thu, 20 May 2021 21:51:42 -0700 Subject: [PATCH] Fixes a runtime in proximity_monitor/Destroy, turns QDEL_LIST -> QDEL_LAZYLIST (#59201) --- code/game/objects/effects/proximity.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/proximity.dm b/code/game/objects/effects/proximity.dm index a24919bdbdd..14c6ec4550b 100644 --- a/code/game/objects/effects/proximity.dm +++ b/code/game/objects/effects/proximity.dm @@ -32,7 +32,7 @@ host = null last_host_loc = null hasprox_receiver = null - QDEL_LIST(checkers) + QDEL_LAZYLIST(checkers) return ..() /datum/proximity_monitor/proc/HandleMove() @@ -69,7 +69,7 @@ if(old_checkers_len) pc = checkers_local[old_checkers_len] --checkers_local.len - QDEL_LIST(checkers_local) + QDEL_LAZYLIST(checkers_local) else pc = new(loc_to_use, src)