Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
Icecreamdudes committed Oct 7, 2024
1 parent 760c205 commit b2661a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/infinityPoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@
},
16: {
name: "Challenge VI",
challengeDescription() { return "<h4>You are stuck in rocket fuel, and point gain is raised to the ^0.03." },
challengeDescription() { return "<h4>You are stuck in rocket fuel, and point gain is raised to the ^0.05." },
goalDescription() { return "1.79e308 prestige points" },
goal() { return new Decimal("1.79e308") },
canComplete: function () { return player.p.prestigePoints.gte(1.79e308) },
Expand Down
2 changes: 1 addition & 1 deletion js/layers.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ addLayer("i", {
if (hasUpgrade("d", 13)) player.gain = player.gain.mul(upgradeEffect("d", 13))
if (hasUpgrade("d", 17)) player.gain = player.gain.mul(upgradeEffect("d", 17))
player.gain = player.gain.div(player.po.pointHalt)
if (inChallenge("ip", 16)) player.gain = player.gain.pow(0.03)
if (inChallenge("ip", 16)) player.gain = player.gain.pow(0.05)
if (inChallenge("ip", 16)) player.gain = player.gain.mul(player.rf.abilityEffects[0])
if (hasUpgrade("rf", 16)) player.gain = player.gain.mul(upgradeEffect("rf", 16))
if (inChallenge("ip", 18)) player.gain = player.gain.pow(0.4)
Expand Down

0 comments on commit b2661a9

Please sign in to comment.