From d09cc10b99cc37067ef584d57ef7489e3a0d1a4f Mon Sep 17 00:00:00 2001 From: evanpelle Date: Wed, 11 Mar 2026 16:23:28 -0700 Subject: [PATCH] meta: update attack logic so its .7 currentAttackerLoss & .3 alt to prevent late-game stalemates, and make meta change more gradual --- 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 4ad8b2e33..a3919f280 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -658,7 +658,7 @@ export class DefaultConfig implements Config { const altAttackerLoss = 1.3 * defenderTroopLoss * (mag / 100) * traitorMod; const attackerTroopLoss = - 0.5 * currentAttackerLoss + 0.5 * altAttackerLoss; + 0.7 * currentAttackerLoss + 0.3 * altAttackerLoss; return { attackerTroopLoss,