From 2b1eaf95c116ce95751b44912e0c0e804bbcbce8 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 6 Jul 2023 22:59:12 +0200 Subject: Fix bug with mandatory retreat. --- rules.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rules.js b/rules.js index e71b2cd..07553c1 100644 --- a/rules.js +++ b/rules.js @@ -3,7 +3,7 @@ // TODO: execute enemy heirs during supply phase // TODO: reuse supply and goes-home states for pretender and king -// TODO: tweak block layout and positioning +// TODO: mulligan rule exports.scenarios = [ "Wars of the Roses", @@ -2473,9 +2473,10 @@ states.battle_round = { fire_with_block(who) else if (can_retreat_with_block(who)) retreat_with_block(who) - else if (must_retreat_with_block(who)) + else if (must_retreat_with_block(who)) { eliminate_block(who) - else + resume_battle() + } else pass_with_block(who) }, } -- cgit v1.2.3