Skip to content

Commit

Permalink
Fix Blue and Red amp lights not flashing the same speed during boost (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Kython89 authored and patfair committed Sep 24, 2024
1 parent a3c46e8 commit 8b1c3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion field/arena.go
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ func (arena *Arena) handlePlcInputOutput() {
blueHighAmpLight := blueAmpSpeaker.BankedAmpNotes >= 2
blueCoopAmpLight := blueAmpSpeaker.CoopActivated
if blueAmplifiedTimeRemaining > 0 {
blueLowAmpLight = int(blueAmplifiedTimeRemaining*4)%2 == 0
blueLowAmpLight = int(blueAmplifiedTimeRemaining*2)%2 == 0
blueHighAmpLight = !blueLowAmpLight
}

Expand Down

0 comments on commit 8b1c3ac

Please sign in to comment.