just a bit more™️

This commit is contained in:
Nif 2024-03-17 20:12:08 +00:00
parent b3584d426d
commit ee282325a7

View file

@ -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"