summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js5
1 files 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();
}