From ef48c4fe4879d308c10de539e3cd5cfcfa572478 Mon Sep 17 00:00:00 2001 From: Harley White Date: Tue, 1 Jun 2021 20:12:14 -0400 Subject: [PATCH] Prestige/sec shows decimals --- changelog.md | 1 + js/components.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 6df0687..3abc690 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/js/components.js b/js/components.js index 41f2687..bc1ca2d 100644 --- a/js/components.js +++ b/js/components.js @@ -243,7 +243,7 @@ function loadVue() { template: `

You have {{formatWhole(tmp[layer].baseAmount)}} {{tmp[layer].baseResource}}
-
You are gaining {{formatWhole(tmp[layer].resetGain.times(tmp[layer].passiveGeneration))}} {{tmp[layer].resource}} per second
+
You are gaining {{format(tmp[layer].resetGain.times(tmp[layer].passiveGeneration))}} {{tmp[layer].resource}} per second


Your best {{tmp[layer].resource}} is {{formatWhole(player[layer].best)}}
You have made a total of {{formatWhole(player[layer].total)}} {{tmp[layer].resource}}