diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-03 22:52:22 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:38 +0100 |
commit | fcdc5e97494406570205a8f5abed8a3087f2ecaa (patch) | |
tree | 8ad6aa14180fc2ec96ce43bd0efa4950df8f8e8d | |
parent | 283d27aa4ab5a38f9e4ec037ee5a5db7a11baf86 (diff) | |
download | nevsky-fcdc5e97494406570205a8f5abed8a3087f2ecaa.tar.gz |
Fix losses when withdrawing losers.
-rw-r--r-- | rules.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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() |