Skip to content

Commit

Permalink
Fixed incorrect challenge increasers using alphabeta
Browse files Browse the repository at this point in the history
  • Loading branch information
Pseudonian committed Mar 25, 2021
1 parent a8c1f01 commit 1b16e13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Challenges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ export const getMaxChallenges = (i: number) => {
maxChallenge += 2 * player.shopUpgrades.challengeExtension;
//Platonic Upgrade 5 (ALPHA): +5
if (player.platonicUpgrades[5] > 0) {
maxChallenge += 3;
maxChallenge += 5;
}
//Platonic Upgrade 10 (BETA): +5
if (player.platonicUpgrades[10] > 0) {
maxChallenge += 3;
maxChallenge += 5;
}
//Platonic Upgrade 15 (OMEGA): +10
if (player.platonicUpgrades[15] > 0) {
maxChallenge += 4;
maxChallenge += 10;
}
return maxChallenge
}
Expand Down

0 comments on commit 1b16e13

Please sign in to comment.