From da87b88838d72c1c2592e9cb5b7b578b15583db5 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 24 Jun 2021 22:37:21 +0200 Subject: Fix stranded gunboats in Malta if there is no bombardment. --- rules.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rules.js b/rules.js index a1abf8c..56d4411 100644 --- a/rules.js +++ b/rules.js @@ -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(); } -- cgit v1.2.3