diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-08-25 17:32:23 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-08-25 17:32:23 +0200 |
commit | e99b858b954388598c49d60ed8e7593f9e8eba25 (patch) | |
tree | ec793d914b54f0199a20567199ddac1aab715472 | |
parent | 2da9e82a0473de067284fbeccae1467d0650dd9e (diff) | |
download | washingtons-war-e99b858b954388598c49d60ed8e7593f9e8eba25.tar.gz |
Fix flipping PC with American army.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1571,7 +1571,7 @@ states.discard_event_pc_action = { } else { if (has_no_pc(s)) place_american_pc(s) - else if (has_british_army(s)) + else if (has_american_army(s)) flip_pc(s) else remove_pc(s) |