Skip to content

Commit

Permalink
Change bigCrunch to happen after taking the max dice / rocket fuel so…
Browse files Browse the repository at this point in the history
… values don't get reset early.
  • Loading branch information
nebasuke committed Dec 7, 2024
1 parent 6f14ed0 commit 4a4f20a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/infinity.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,9 +483,6 @@ addLayer("bigc", {
{
player.ip.hexRuns = player.ip.hexRuns.add(1)
}
layers.in.bigCrunch()
player.in.reachedInfinity = false

if (hasUpgrade("ta", 17))
{
if (player.d.dicePoints.gt(player.ta.highestDicePoints))
Expand All @@ -502,6 +499,9 @@ addLayer("bigc", {
}
}

layers.in.bigCrunch()
player.in.reachedInfinity = false

if (player.rm.halterBoostCheck && player.po.realmMods)
{
player.rm.halterBoost = player.po.halterEffects[0]
Expand Down

0 comments on commit 4a4f20a

Please sign in to comment.