From b3fd34ffafefa1075266011a3233626007a47382 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Wed, 23 Apr 2025 05:09:34 +0200 Subject: [PATCH] fix minimal population 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 5076c1e81..5da354e05 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -591,7 +591,7 @@ export class DefaultConfig implements Config { populationIncreaseRate(player: Player): number { const max = this.maxPopulation(player); - let toAdd = (800 / max + 1 / 160) * player.population(); + let toAdd = 10 + (800 / max + 1 / 160) * player.population(); const ratio = 1 - player.population() / max; toAdd *= ratio;