diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-09 18:22:24 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-08-21 00:28:20 +0200 |
commit | 4e575a3795d5a76bc3db68848b23e2b609a51fec (patch) | |
tree | bda9017ed835997684d6a2842409e766b4c31390 | |
parent | 6f4e024ef75e4a1eac293aec95b4a3ad62e9d9e1 (diff) | |
download | washingtons-war-4e575a3795d5a76bc3db68848b23e2b609a51fec.tar.gz |
fix typo with return congress
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3394,7 +3394,7 @@ function remove_isolated_british_pc_segment() { remove_pc(space); } -function gen_return_continental_congress() { +function gen_place_continental_congress() { let n = 0; for (let space in SPACES) { if (SPACES[space].colony != 'CA') { @@ -3423,7 +3423,7 @@ states.return_continental_congress = { gen_pass(); }, place_continental_congress: function (where) { - game.congess = where; + game.congress = where; goto_political_control_phase_2(); }, pass: function () { |