diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-03-23 19:19:42 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 11:54:52 +0100 |
commit | b3134eaf4cf6d7b6047f6c8258d6f0d575d9a867 (patch) | |
tree | 1c6b462d4e259cdb2e949c9dc94b423e3b5f9874 | |
parent | ba8e77b1a3c8b40e53c3ec2b05bce25c83071ebe (diff) | |
download | wilderness-war-b3134eaf4cf6d7b6047f6c8258d6f0d575d9a867.tar.gz |
Fix lifting Amphib at Louisbourg.
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1773,8 +1773,7 @@ function is_fort_or_fortress_vacant_of_besieging_units(s) { } function lift_sieges_and_amphib() { - console.log("LIFT"); - + // Lift sieges for_each_siege(s => { if (is_fort_or_fortress_vacant_of_besieging_units(s)) { log(`Lifted siege at ${space_name(s)}.`); @@ -1785,10 +1784,11 @@ function lift_sieges_and_amphib() { } }); + // Remove amphib for (let i = game.amphib.length-1; i >= 0; --i) { let s = game.amphib[i]; if (!has_british_units(s)) { - if (s !== LOUISBOURG && (has_french_drilled_troops(s) || has_unbesieged_french_fortification(s))) { + if (has_french_drilled_troops(s) || (s !== LOUISBOURG && has_unbesieged_french_fortification(s))) { log(`Removed Amphib at ${space_name(s)}.`); game.amphib.splice(i, 1); } |