Skip to content

Commit 548fe6f

Browse files
committed
Balance c15 (1)
1 parent 9bfb0c6 commit 548fe6f

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

src/Calculate.ts

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -589,14 +589,9 @@ export const calculateActualAntSpeedMult = () => {
589589
exponent = 0.2
590590
}
591591

592-
if (player.currentChallenge.ascension !== 15) {
593-
exponent *= 1 - 0.01 * Math.min(99, player.corruptions.used.totalLevels)
594-
} else {
595-
// C15 used to have 9 corruptions set to 11, which above would provide a power of 0.01. Now it's hardcoded this way.
596-
exponent *= 0.01
597-
if (player.platonicUpgrades[10] > 0) {
598-
exponent *= 1.25
599-
}
592+
exponent *= 1 - 0.01 * Math.min(99, player.corruptions.used.totalLevels)
593+
if (player.platonicUpgrades[10] > 0 && player.currentChallenge.ascension === 15) {
594+
exponent *= 1.25
600595
}
601596

602597
return Decimal.pow(base, exponent)

src/Config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
declare const PROD: boolean | undefined
22
declare const DEV: boolean | undefined
33

4-
export const version = '4.1.0 October 19, 2025: The Ants Update ALPHA v1'
4+
export const version = '4.1.0 October 19, 2025: The Ants Update ALPHA v2'
55

66
/**
77
* If true, the version is marked as a testing version.

0 commit comments

Comments
 (0)