diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-06-24 22:37:21 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:12:42 +0100 |
commit | da87b88838d72c1c2592e9cb5b7b578b15583db5 (patch) | |
tree | 9cc8d84b7b3080cd184f4bdfbc0a66885eaaab63 | |
parent | e0fff8075fbbe978d97b79d219df61795da7ec90 (diff) | |
download | shores-of-tripoli-da87b88838d72c1c2592e9cb5b7b578b15583db5.tar.gz |
Fix stranded gunboats in Malta if there is no bombardment.
-rw-r--r-- | rules.js | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1531,9 +1531,6 @@ states.land_battle_bombardment_results = { next: function (card) { delete game.flash; - move_all_pieces(US_FRIGATES, game.where, MALTA); - move_all_pieces(US_GUNBOATS, game.where, MALTA); - log("Land Battle in " + SPACES[game.where] + "."); goto_land_battle(); @@ -1541,6 +1538,8 @@ states.land_battle_bombardment_results = { } function goto_land_battle() { + move_all_pieces(US_FRIGATES, game.where, MALTA); + move_all_pieces(US_GUNBOATS, game.where, MALTA); goto_land_battle_american_card(); } |