From fc5bf9c9e127f11b728e1f584bc12ec2805fc455 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 19 Jan 2025 11:11:49 +0100 Subject: Fix Amphibious Landing check when French sortie from Louisbourg. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 7e353ad..88b8126 100644 --- a/rules.js +++ b/rules.js @@ -4958,7 +4958,7 @@ function goto_atk_fire() { if (!atk_has_reg && def_has_reg) die = modify(die, -1, "vs regulars in cultivated") } - if (has_amphib(game.battle.where) && game.move && game.move.type === 'naval') { + if (has_amphib(game.battle.where) && game.move && game.move.type === 'naval' && game.active === BRITAIN) { die = modify(die, -1, "amphibious landing") } if (has_enemy_stockade(game.battle.where)) { -- cgit v1.2.3