Skip to content

Commit

Permalink
Merge pull request #630 from ZanderHill/master
Browse files Browse the repository at this point in the history
Update singularity.ts
  • Loading branch information
Pseudonian authored Jan 12, 2025
2 parents 9b947d1 + 20404b0 commit ece4e89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/singularity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2645,8 +2645,8 @@ export const calculateSingularityDebuff = (
? 1 + Math.sqrt(effectiveSingularities) / 5
: 1 + Math.pow(effectiveSingularities, 0.75) / 10000
} else if (debuff === 'Cubes') {
const extraMult = player.singularityCount > 100
? Math.pow(1.02, player.singularityCount - 100)
const extraMult = constitutiveSingularityCount > 100
? Math.pow(1.02, constitutiveSingularityCount - 100)
: 1
return player.singularityCount < 150
? 1 + (Math.sqrt(effectiveSingularities) * extraMult) / 4
Expand Down

0 comments on commit ece4e89

Please sign in to comment.