diff options
-rw-r--r-- | rules.js | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -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) |