diff options
-rw-r--r-- | rules.js | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -3426,16 +3426,16 @@ states.lord_sandwich_coastal_raids = { view.actions.pass = 1 gen_lord_sandwich_coastal_raids(game.where) }, - space(where) { - if (has_american_pc(space)) { - game.where = where - remove_pc(where) + space(s) { + if (has_american_pc(s)) { + game.where = s + remove_pc(s) if (--game.count === 0) end_strategy_card() } else { - place_british_pc(where) + place_british_pc(s) + end_strategy_card() } - end_strategy_card() }, pass() { end_strategy_card() |