diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3451,7 +3451,7 @@ states.pennsylvania_and_new_jersey_line_mutinies = { view.actions.pass = 1 gen_pennsylvania_and_new_jersey_line_mutinies(game.where) }, - remove_cu(where) { + space(where) { if (count_american_cu(where) > 0) remove_american_cu(where, 1) else @@ -3469,7 +3469,7 @@ function gen_pennsylvania_and_new_jersey_line_mutinies(first_removed) { for (let space of all_spaces) { if (has_american_or_french_cu(space)) if (space !== first_removed) - gen_action("remove_cu", space) + gen_action_space(space) } } |