generated from incremental-social/The-Modding-Tree
just a bit more™️
This commit is contained in:
parent
b3584d426d
commit
ee282325a7
1 changed files with 4 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue