diff options
-rw-r--r-- | rules.js | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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) }, } |