Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
Icecreamdudes committed Oct 29, 2024
1 parent 1bb10ab commit c01398c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/cantepocalypsePuzzle.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ addLayer("cap", {
player.cap.reqDisplay = "Answer questions about your journey so far."
}

if (hasUpgrade("i", 31) && hasUpgrade("i", 32) && hasUpgrade("i", 33) && hasUpgrade("i", 34) && hasUpgrade("i", 35))
if (hasUpgrade("i", 31) && hasUpgrade("i", 32) && hasUpgrade("i", 33) && hasUpgrade("i", 34))
{
player.cap.passingReqs[0] = true
}
Expand Down
4 changes: 3 additions & 1 deletion js/infinityPoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@
goal() { return new Decimal("1.79e308") },
canComplete: function () { return player.points.gte(1.79e308) },
rewardDescription: "....???",
unlocked() { return hasChallenge("ip", 17) },
unlocked() { return hasChallenge("ip", 17) && !hasChallenge('ip', 18) },
onEnter() {
player.in.infinityPause = new Decimal(5)
},
Expand Down Expand Up @@ -740,6 +740,8 @@
["blank", "25px"],
["row", [["challenge", 11], ["challenge", 12], ["challenge", 13], ["challenge", 14]]],
["row", [["challenge", 15], ["challenge", 16], ["challenge", 17], ["challenge", 18]]],
["blank", "25px"],
["raw-html", function () { return hasChallenge("ip", 18) ? "CHALLENGE VIII HAS BEEN TERMINATED." : ""}, { "color": "white", "font-size": "24px", "font-family": "monospace" }],
]

},
Expand Down

0 comments on commit c01398c

Please sign in to comment.