summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index fc4d898..2d8b10b 100644
--- a/rules.js
+++ b/rules.js
@@ -3152,9 +3152,15 @@ states.move = {
} else {
if (!game.events.no_amphib) {
if (game.active === BRITAIN && has_amphibious_arrow(from)) {
- for (let card = first_amphib_card; card <= last_amphib_card; ++card)
- if (player.hand.includes(card))
+ let has_amphib = false;
+ for (let card = first_amphib_card; card <= last_amphib_card; ++card) {
+ if (player.hand.includes(card)) {
+ has_amphib = true;
gen_action('play_event', card);
+ }
+ }
+ if (has_amphib)
+ view.prompt += ` You may play "Amphibious Landing."`;
}
}
}