From 35a69913008073ecfe2c9919159deb46b817b4b6 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sat, 5 Oct 2019 05:14:38 +0200 Subject: [PATCH] lone rogue parenthesis --- code/game/machinery/syndicatebeacon.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/syndicatebeacon.dm b/code/game/machinery/syndicatebeacon.dm index cacc109793..175a3f72ec 100644 --- a/code/game/machinery/syndicatebeacon.dm +++ b/code/game/machinery/syndicatebeacon.dm @@ -31,7 +31,7 @@ GLOBAL_INIT_LIST(singularity_beacons) return GLOB.singularity_beacons += src for(var/datum/round_event_control/meteor_wave/W in SSevents.control) - W.weight += round(initial(W.weight) * METEOR_DISASTER_MODIFIER)) + W.weight += round(initial(W.weight) * METEOR_DISASTER_MODIFIER) for(var/obj/singularity/singulo in GLOB.singularities) if(singulo.z == z) singulo.target = src @@ -51,7 +51,7 @@ GLOBAL_INIT_LIST(singularity_beacons) to_chat(user, "You deactivate the beacon.") GLOB.singularity_beacons -= src for(var/datum/round_event_control/meteor_wave/W in SSevents.control) - W.weight -= round(initial(W.weight) * METEOR_DISASTER_MODIFIER)) + W.weight -= round(initial(W.weight) * METEOR_DISASTER_MODIFIER) /obj/machinery/power/singularity_beacon/attack_ai(mob/user)