From 5c705b4de1c7735a6bc80e070a087c6b4ca9f411 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 a8293191d..4282935af 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -611,7 +611,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;