diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-26 23:46:23 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 198286ab6b25987e9c71decc3caf193ae9d9055e (patch) | |
tree | e24eeccd13510b85c2ce54c241ccdd96977de643 /rules.js | |
parent | 6da4406e2e959f52ad9fcb1f5627f87c48e5c148 (diff) | |
download | andean-abyss-198286ab6b25987e9c71decc3caf193ae9d9055e.tar.gz |
Fix typo when redeploying Govt from FARC Zone.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6580,7 +6580,7 @@ function find_first_police_in_farc_zone() { function has_govt_base_in_farc_zone() { for (let s = first_dept; s <= last_dept; ++s) - if (is_farc_zone(s) && has_govt_piece(s)) + if (is_farc_zone(s) && has_govt_base(s)) return true return false } |