meta: update attack logic so its .7 currentAttackerLoss & .3 alt to prevent late-game stalemates, and make meta change more gradual

This commit is contained in:
evanpelle
2026-03-11 16:23:28 -07:00
parent 2c13c41077
commit d09cc10b99
+1 -1
View File
@@ -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,