diff --git a/js/mod.js b/js/mod.js index 7f2e935..17ccc74 100644 --- a/js/mod.js +++ b/js/mod.js @@ -82,7 +82,10 @@ function addedPlayerData() { return { // Display extra things at the top of the page var displayThings = [ "All exponentiative upgrades only take affect above 1.", - () => getPointGen().gte(getKappaEffect().mul(1000)) ? "Your points per second are being logarithmically softcapped over " + getKappaEffect().mul(1000) + "/s" : "" + () => getPointGen().gte(getKappaEffect().mul(1000)) ? "Your points per second are being logarithmically softcapped over " + + format(getKappaEffect().mul(1000)) + "/s" : "", + () => getPointGen().add(player.points).gte(Decimal.pow(2, 128)) ? "Your points per second are being hardcapped over " + + format(Decimal.pow(2, 128)) : "" ] // Determines when the game "ends"