diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-03-20 23:09:24 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 11:54:52 +0100 |
commit | 0831b131690929ac4104c52b8047605c870f2301 (patch) | |
tree | 08ee55e88da81893ebdb8ea027a4466f7eaba575 | |
parent | fa73f2edd6c803656c22595b919fa278a5e8387e (diff) | |
download | wilderness-war-0831b131690929ac4104c52b8047605c870f2301.tar.gz |
Check if "Call out militias" can have an effect before allowing play.
-rw-r--r-- | rules.js | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -7798,6 +7798,18 @@ states.restore_regular_or_light_infantry_units = { } events.call_out_militias = { + can_play() { + if (game.active === FRANCE) { + for (let p = first_french_militia; p <= last_french_militia; ++p) + if (is_piece_unused(p) || is_unit_reduced(p)) + return true; + } else { + for (let p = first_british_militia; p <= last_british_militia; ++p) + if (is_piece_unused(p) || is_unit_reduced(p)) + return true; + } + return false; + }, play() { game.state = 'call_out_militias'; game.count = 2; |