From 4d5942fde0a188fa404d486983312908fcbe4260 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Wed, 23 Apr 2025 17:49:40 +0200 Subject: [PATCH] workers reproduce faster than troops --- src/core/configuration/DefaultConfig.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 5da354e05..1f9c79b1e 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -591,7 +591,9 @@ export class DefaultConfig implements Config { populationIncreaseRate(player: Player): number { const max = this.maxPopulation(player); - let toAdd = 10 + (800 / max + 1 / 160) * player.population(); + let toAdd = + 10 + + (800 / max + 1 / 160) * (0.7 * player.troops() + 1.3 * player.workers()); const ratio = 1 - player.population() / max; toAdd *= ratio;