Skip to content

Commit

Permalink
Update Calculate.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
HypertextEye committed Oct 7, 2023
1 parent 4bdd287 commit aa80306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Calculate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export function calculateOfferings(input: resetNames, calcMult = true, statistic
}
a += 1 / 200 * G.rune5level * G.effectiveLevelMult * (1 + player.researches[85] / 200)
a *= (1 + Math.pow(Decimal.log(player.reincarnationShards.add(1), 10), 2 / 3) / 4)
a *= Math.min(Math.pow(player.reincarnationcounter / 10, 2), 1)
a *= Math.min(Math.pow(player.reincarnationcounter / 10 + 1, 2), 1)
if (player.reincarnationcounter >= 5) {
a *= Math.max(1, player.reincarnationcounter / 10)
}
Expand Down Expand Up @@ -334,7 +334,7 @@ export function calculateOfferings(input: resetNames, calcMult = true, statistic
if (player.prestigeCount >= 5) {
c *= Math.max(1, player.prestigecounter / 10)
}
q = Math.max(a + b + c, 1)
q = a + b + c

const arr = [
1 + 10 * player.achievements[33] / 100, // Alchemy Achievement 5
Expand Down

0 comments on commit aa80306

Please sign in to comment.