1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-23 17:01:47 +00:00

Prestige/sec shows decimals

This commit is contained in:
Harley White 2021-06-01 20:12:14 -04:00
parent 6273181bf8
commit ef48c4fe48
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
- Fixed demo.html
- You can now use "this" in tabFormat!
- The prestige/sec display now shows decimals.
- Fixed certain things skipping negative rows (now they are treated like non-numeric rows, and don't appear in the tree still).
### v2.5.11.1 - 5/27/21

View file

@ -243,7 +243,7 @@ function loadVue() {
template: `
<div style="margin-top: -13px">
<span v-if="tmp[layer].baseAmount"><br>You have {{formatWhole(tmp[layer].baseAmount)}} {{tmp[layer].baseResource}}</span>
<span v-if="tmp[layer].passiveGeneration"><br>You are gaining {{formatWhole(tmp[layer].resetGain.times(tmp[layer].passiveGeneration))}} {{tmp[layer].resource}} per second</span>
<span v-if="tmp[layer].passiveGeneration"><br>You are gaining {{format(tmp[layer].resetGain.times(tmp[layer].passiveGeneration))}} {{tmp[layer].resource}} per second</span>
<br><br>
<span v-if="tmp[layer].showBest">Your best {{tmp[layer].resource}} is {{formatWhole(player[layer].best)}}<br></span>
<span v-if="tmp[layer].showTotal">You have made a total of {{formatWhole(player[layer].total)}} {{tmp[layer].resource}}<br></span>