From 1be197229aa533c1b380c59a0e38966b14d83b32 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Sat, 2 May 2026 09:36:44 -0600 Subject: [PATCH] meta: make tribes slightly weaker to speed up the early game --- src/core/configuration/DefaultConfig.ts | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 72e295d11..d3de77c1c 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -683,16 +683,11 @@ export class DefaultConfig implements Config { mag = 0; } if ( - attacker.type() === PlayerType.Human && + (attacker.type() === PlayerType.Human || + attacker.type() === PlayerType.Nation) && defender.type() === PlayerType.Bot ) { - mag *= 0.8; - } - if ( - attacker.type() === PlayerType.Nation && - defender.type() === PlayerType.Bot - ) { - mag *= 0.8; + mag *= 0.7; } } @@ -864,7 +859,7 @@ export class DefaultConfig implements Config { toAdd *= ratio; if (player.type() === PlayerType.Bot) { - toAdd *= 0.6; + toAdd *= 0.5; } if (player.type() === PlayerType.Nation) {