From f4c1e6ad41abcb0f03c39c8c01f191d469d6600f Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 28 Sep 2022 11:25:54 +0200 Subject: Exception: Fortress battles are not mandatory during blitz combat. --- rules.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/rules.js b/rules.js index a712237..982081c 100644 --- a/rules.js +++ b/rules.js @@ -4604,12 +4604,15 @@ function goto_combat_phase() { return end_combat_phase() } - if (is_mandatory_combat(BARDIA)) - set_add(game.new_battles, BARDIA) - if (is_mandatory_combat(BENGHAZI)) - set_add(game.new_battles, BENGHAZI) - if (is_mandatory_combat(TOBRUK)) - set_add(game.new_battles, TOBRUK) + // exception - not mandatory during blitz combat + if (game.turn_option !== 'second blitz') { + if (is_mandatory_combat(BARDIA)) + set_add(game.new_battles, BARDIA) + if (is_mandatory_combat(BENGHAZI)) + set_add(game.new_battles, BENGHAZI) + if (is_mandatory_combat(TOBRUK)) + set_add(game.new_battles, TOBRUK) + } for (let x of game.new_battles) set_add(game.active_battles, x) -- cgit v1.2.3