diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-07-10 23:57:57 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-08-21 00:28:20 +0200 |
commit | e2f4273294d4138d1d7fdcebf78c426f8b90b2eb (patch) | |
tree | d1e56fb60b2cfcffc0bb42dc668fd29f262f13ed | |
parent | dbf4c2f576af9d2d8c168a26433b56bb10e3bc8f (diff) | |
download | washingtons-war-e2f4273294d4138d1d7fdcebf78c426f8b90b2eb.tar.gz |
fix mutinies
-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) } } |