From fcdc5e97494406570205a8f5abed8a3087f2ecaa Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 3 Jan 2023 22:52:22 +0100 Subject: Fix losses when withdrawing losers. --- rules.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index 332d55f..17ae9b0 100644 --- a/rules.js +++ b/rules.js @@ -8354,9 +8354,10 @@ function action_losses(lord, type) { if (game.active === game.battle.attacker) target = 1 } else { - // Losers in a Battle roll vs 1 if they did not concede + // Losers in a Battle roll vs 1 if they did not concede (unless they Withdrew) if (game.active === game.battle.loser && game.active !== game.battle.conceded) - target = 1 + if (is_lord_unbesieged(lord)) + target = 1 } let die = roll_die() -- cgit v1.2.3