From 49dee7edfc9f97b675fe20645615310c91b3788d Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 23 Apr 2023 17:44:55 -0500 Subject: [PATCH] Add powered machines count to nav --- src/data/projEntry.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/data/projEntry.tsx b/src/data/projEntry.tsx index 3431f09..81df8b4 100644 --- a/src/data/projEntry.tsx +++ b/src/data/projEntry.tsx @@ -938,6 +938,14 @@ export const main = createLayer("main", function (this: BaseLayer) { /s) + {Decimal.gt(poweredMachines.value, 0) ? ( + +

+ {formatWhole(poweredMachines.value)} +

{" "} + machines powered +
+ ) : null}