File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 11declare const PROD : boolean | undefined
22declare 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.
You can’t perform that action at this time.
0 commit comments