From e44848f24f70e7a0e1207e430c298dca7d0100a7 Mon Sep 17 00:00:00 2001 From: Patrick Fairbank Date: Tue, 24 Sep 2024 18:50:34 -0700 Subject: [PATCH] Blink amp lights twice as frequently. --- field/arena.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/field/arena.go b/field/arena.go index 6a3b80af..37876e0c 100644 --- a/field/arena.go +++ b/field/arena.go @@ -1032,7 +1032,7 @@ func (arena *Arena) handlePlcInputOutput() { redHighAmpLight := redAmpSpeaker.BankedAmpNotes >= 2 redCoopAmpLight := redAmpSpeaker.CoopActivated if redAmplifiedTimeRemaining > 0 { - redLowAmpLight = int(redAmplifiedTimeRemaining*2)%2 == 0 + redLowAmpLight = int(redAmplifiedTimeRemaining*4)%2 == 0 redHighAmpLight = !redLowAmpLight } @@ -1040,7 +1040,7 @@ func (arena *Arena) handlePlcInputOutput() { blueHighAmpLight := blueAmpSpeaker.BankedAmpNotes >= 2 blueCoopAmpLight := blueAmpSpeaker.CoopActivated if blueAmplifiedTimeRemaining > 0 { - blueLowAmpLight = int(blueAmplifiedTimeRemaining*2)%2 == 0 + blueLowAmpLight = int(blueAmplifiedTimeRemaining*4)%2 == 0 blueHighAmpLight = !blueLowAmpLight }