diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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."`; } } } |