From 712d80f9ac2aa6b0f6f06f79482e12e18a2fc209 Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Wed, 18 Mar 2026 08:44:12 -0400 Subject: [PATCH] Fixes flux & gravity core assembly activation not working (#95405) --- code/modules/research/anomaly/anomaly_core.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/research/anomaly/anomaly_core.dm b/code/modules/research/anomaly/anomaly_core.dm index 9e631815803..d9d15931c0f 100644 --- a/code/modules/research/anomaly/anomaly_core.dm +++ b/code/modules/research/anomaly/anomaly_core.dm @@ -60,10 +60,10 @@ anomaly_type = /obj/effect/anomaly/grav /obj/item/assembly/signaler/anomaly/grav/signal() - for(var/obj/object in orange(2, src)) + for(var/obj/object in orange(2, get_turf(src))) if(!object.anchored) step_towards(object,src) - for(var/mob/living/living in orange(2, src)) + for(var/mob/living/living in orange(2, get_turf(src))) if(!living.mob_negates_gravity()) step_towards(living,src) @@ -74,7 +74,7 @@ anomaly_type = /obj/effect/anomaly/flux /obj/item/assembly/signaler/anomaly/flux/signal() - tesla_zap(src, 0, 10 KILO JOULES, 5 KILO JOULES, ZAP_MOB_DAMAGE | ZAP_OBJ_DAMAGE | ZAP_GENERATES_POWER) + tesla_zap(get_turf(src), 0, 10 KILO JOULES, 5 KILO JOULES, ZAP_MOB_DAMAGE | ZAP_OBJ_DAMAGE | ZAP_GENERATES_POWER) /obj/item/assembly/signaler/anomaly/bluespace name = "\improper bluespace anomaly core"