diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-09 18:22:24 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-09 18:22:24 +0200 |
commit | 322eacc74f72f69625bb5d281ce6a5e5c1dd7cf3 (patch) | |
tree | 412d83602a76b7a44294aea24950a774328e6901 | |
parent | 9926d6955fb30e9e17312ffeacfc21a4766d8208 (diff) | |
download | washingtons-war-322eacc74f72f69625bb5d281ce6a5e5c1dd7cf3.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 () { |