summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-06-26 11:55:13 +0200
committerTor Andersson <tor@ccxvii.net>2024-06-26 11:55:13 +0200
commit7d1d8653dad62f6409e8de1db7bd0a223fdc7f94 (patch)
tree28763996210e4e7392975ab6358e1e3387fc82c8 /rules.js
parentc5d377e8e1c907149327ba45c22e5e52b8cecf1f (diff)
downloadplantagenet-7d1d8653dad62f6409e8de1db7bd0a223fdc7f94.tar.gz
fix sail
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index 704c9a0..8b687a9 100644
--- a/rules.js
+++ b/rules.js
@@ -996,6 +996,12 @@ function count_lord_all_forces(lord) {
get_lord_forces(lord, MILITIA) +
get_lord_forces(lord, LONGBOWMEN));
}
+function count_group_all_forces(list) {
+ let n = 0;
+ for (let lord of list)
+ n += count_lord_all_forces(lord);
+ return n;
+}
function lord_has_unrouted_units(lord) {
for (let x of all_force_types)
if (get_lord_forces(lord, x) > 0)
@@ -3232,7 +3238,7 @@ states.command = {
view.actions.sail = 1;
can_move = true;
}
- if (can_move && can_pick_up_lords(game.command)) {
+ if (can_pick_up_lords(game.command)) {
view.group = game.group;
for_each_friendly_lord_in_locale(here, other => {
if (can_pick_up_other(game.command, other))
@@ -3553,7 +3559,7 @@ states.blockade_supply = {
// === 4.6.1 ACTION: SAIL ===
function has_enough_available_ships_for_army() {
let ships = count_group_ships(game.group, true);
- let army = count_lord_all_forces(game.command);
+ let army = count_group_all_forces(game.group);
let needed_ships = army / 6;
return needed_ships <= ships;
}