From c47754dd8268fa629bd1cbccace7798007b396e5 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Fri, 9 May 2025 23:06:50 +0200 Subject: [PATCH] restore pop growth --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 30e52bb4a..d2d88a082 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -613,7 +613,7 @@ export class DefaultConfig implements Config { let toAdd = 10 + - (840 / max + 1 / 210) * (0.8 * player.troops() + 1.2 * player.workers()); + (1400 / max + 1 / 125) * (0.8 * player.troops() + 1.2 * player.workers()); const adjustedPop = player.adjustedPopulation(); const ratio = 1 - adjustedPop / max;