Skip to content

Commit

Permalink
Five lane bots now auto-whammy (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalH authored Jun 7, 2023
1 parent 56bfba1 commit 6dae917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Script/PlayMode/FiveFretTrack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ protected override void UpdateStarpower() {
}

// Update starpower
if (whammyAmount > 0f) {
if ((whammyAmount > 0f) || input.BotMode) {
starpowerCharge += Time.deltaTime * Play.Instance.CurrentBeatsPerSecond * 0.034f;
}
}
Expand Down

0 comments on commit 6dae917

Please sign in to comment.