From 7f0df534ac6789b075e36c544ebdcb9ed9891a96 Mon Sep 17 00:00:00 2001 From: xangelo Date: Thu, 26 May 2022 10:42:28 -0400 Subject: [PATCH] bug: energy growth not accounted for in tick --- src/tasks/tick.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks/tick.ts b/src/tasks/tick.ts index 5ce69e4..0f4c3eb 100644 --- a/src/tasks/tick.ts +++ b/src/tasks/tick.ts @@ -42,7 +42,7 @@ export const tick = new Task('tick', async (task, job) => { ore_refinery * 4 ), 0 - ), + ) + solar_panels * 125, accumulators * 150 ), alloys = min( -- 2.25.1