diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-02-14 15:44:40 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 11:54:52 +0100 |
commit | 2d93e87ab27d84d8840a0a3b06c519beac9c62a1 (patch) | |
tree | 9bd38ba893210285355ffb6ae16ad8ccf4bc6d53 | |
parent | 2ffe6fc3bd414ea549518bc013b92c509a105d39 (diff) | |
download | wilderness-war-2d93e87ab27d84d8840a0a3b06c519beac9c62a1.tar.gz |
Fix lone leader check.
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1375,7 +1375,7 @@ function enemy_department_has_at_least_n_militia(where, n) { // Is a leader moving alone without a force. function is_lone_leader(who) { - return is_leader(who) && count_pieces_in_force(who) === 0; + return is_leader(who) && count_pieces_in_force(who) === 1; } // Is a single auxiliary unit (with or without leaders) @@ -1802,7 +1802,7 @@ function list_intercept_spaces(is_lone_ld, is_lone_ax) { if (is_lone_ld) return intercept; - console.log("INTERCEPT SEARCH is_lone_ax=", is_lone_ax); + console.log("INTERCEPT SEARCH is_lone_ax", is_lone_ax, "is_lone_ld", is_lone_ld); for (let from = first_space; from <= last_space; ++from) { if (has_unbesieged_enemy_units(from)) { @@ -2722,7 +2722,7 @@ function may_naval_move(who) { return false; if (game.active === FRANCE && game.no_fr_naval) return false; - if (is_leader(who) && count_pieces_in_force(who) > 0) + if (is_leader(who) && count_pieces_in_force(who) > 1) return cards[game.cards.current].activation === 3; return true; } |