From e22b3c1cc5427cdf36e96d5f9d83ea6da0564ce9 Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Sun, 26 Oct 2025 17:59:32 -0400 Subject: [PATCH] Upports this timer (#18694) Upport resonator burst timer --- code/modules/mining/resonator.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mining/resonator.dm b/code/modules/mining/resonator.dm index 7da14acaf6..5c683ee953 100644 --- a/code/modules/mining/resonator.dm +++ b/code/modules/mining/resonator.dm @@ -119,9 +119,7 @@ transform = matrix()*0.75 animate(src, transform = matrix()*1.5, time = timetoburst) // Queue the actual bursting - spawn(timetoburst) - if(!QDELETED(src)) - burst(creator) + addtimer(CALLBACK(src, PROC_REF(burst), creator), timetoburst) /obj/effect/resonance/proc/burst(var/creator = null) var/turf/T = get_turf(src)