summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index 94416c9..9cf1f36 100644
--- a/rules.js
+++ b/rules.js
@@ -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)
}
}