From 14bbe58797eae36f26520980eb86faeb9bb7a635 Mon Sep 17 00:00:00 2001 From: Theos Date: Mon, 20 Jun 2022 19:30:24 -0400 Subject: [PATCH] should stop resonator blasts from stacking during replication --- code/modules/mining/equipment/resonator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/equipment/resonator.dm b/code/modules/mining/equipment/resonator.dm index 603524253f60..9bf227c55348 100644 --- a/code/modules/mining/equipment/resonator.dm +++ b/code/modules/mining/equipment/resonator.dm @@ -121,5 +121,5 @@ if(!istype(M) || !M.mineralType) // so we don't end up in the ultimate chain reaction return for(var/turf/closed/mineral/T in orange(1, M)) - if(istype(T) && M.mineralType == T.mineralType) + if(istype(T) && !locate(/obj/effect/temp_visual/resonance) in T && M.mineralType == T.mineralType) new /obj/effect/temp_visual/resonance(T, creator, null, duration) //yogs end