Skip to content

Commit 8b1c3ac

Browse files
Kython89patfair
authored andcommitted
Fix Blue and Red amp lights not flashing the same speed during boost (#194)
1 parent a3c46e8 commit 8b1c3ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

field/arena.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ func (arena *Arena) handlePlcInputOutput() {
10401040
blueHighAmpLight := blueAmpSpeaker.BankedAmpNotes >= 2
10411041
blueCoopAmpLight := blueAmpSpeaker.CoopActivated
10421042
if blueAmplifiedTimeRemaining > 0 {
1043-
blueLowAmpLight = int(blueAmplifiedTimeRemaining*4)%2 == 0
1043+
blueLowAmpLight = int(blueAmplifiedTimeRemaining*2)%2 == 0
10441044
blueHighAmpLight = !blueLowAmpLight
10451045
}
10461046

0 commit comments

Comments
 (0)