summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-06-24 22:37:21 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:12:42 +0100
commitda87b88838d72c1c2592e9cb5b7b578b15583db5 (patch)
tree9cc8d84b7b3080cd184f4bdfbc0a66885eaaab63 /rules.js
parente0fff8075fbbe978d97b79d219df61795da7ec90 (diff)
downloadshores-of-tripoli-da87b88838d72c1c2592e9cb5b7b578b15583db5.tar.gz
Fix stranded gunboats in Malta if there is no bombardment.
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();
}