From 2f071835d561d51609c420f81c9746ae3eb11393 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Wed, 13 Aug 2025 11:51:01 -0700 Subject: [PATCH] nerf bots --- src/core/configuration/DefaultConfig.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 985397d3d..c3cd57da6 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -747,7 +747,7 @@ export class DefaultConfig implements Config { this.cityTroopIncrease(); if (player.type() === PlayerType.Bot) { - return maxTroops / 2; + return maxTroops / 3; } if (player.type() === PlayerType.Human) { @@ -799,6 +799,9 @@ export class DefaultConfig implements Config { } goldAdditionRate(player: Player): Gold { + if (player.type() === PlayerType.Bot) { + return 50n; + } return 100n; }