Skip to content

Commit

Permalink
progressively light bonus arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
derekcorreia committed Sep 5, 2023
1 parent 37d8423 commit c15e542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WildFyre2022.ino
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ void ShowBonusXArrowLamps(){
if (CurrentTime < LeftInlaneLastHitTime + 3000){
RPU_SetLampState(LAMP_SAUCER_ARROW_1 + count, 1, 0, 100);
} else {
RPU_SetLampState(LAMP_SAUCER_ARROW_1 + count, (BonusAdvanceArrows == count)?1:0);
RPU_SetLampState(LAMP_SAUCER_ARROW_1 + count, (BonusAdvanceArrows >= count)?1:0);
}
}
RPU_SetLampState(LAMP_10K_ROLLOVER, (BonusAdvanceArrows >= 3)?1:0);
Expand Down

0 comments on commit c15e542

Please sign in to comment.