From 8820e84dedf702a3f950bfdccdc358ccd80d05f4 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 27 Aug 2021 16:34:17 +0200 Subject: [PATCH] [MIRROR] fixed field generators (#7807) * Update field_generator.dm (#60918) * fixed field generators Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com> --- code/modules/power/singularity/field_generator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/singularity/field_generator.dm b/code/modules/power/singularity/field_generator.dm index eb2e44f84ce..f13f24537ba 100644 --- a/code/modules/power/singularity/field_generator.dm +++ b/code/modules/power/singularity/field_generator.dm @@ -84,7 +84,7 @@ no power level overlay is currently in the overlays list. if(state != FG_WELDED) to_chat(user, span_warning("[src] needs to be firmly secured to the floor first!")) return - if(get_dist(src, user) >= 1)//Need to actually touch the thing to turn it on + if(get_dist(src, user) > 1)//Need to actually touch the thing to turn it on return if(active >= FG_CHARGING) to_chat(user, span_warning("You are unable to turn off [src] once it is online!"))