diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-10-11 20:45:09 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 02b760570cb1cc91cfc22f3fffccf8b7bdd8a215 (patch) | |
tree | 1359f9233806adb874efdc5af3ae222b490fbfba | |
parent | df4260ee3384dbaea385c49dee6f2aa9f49be48f (diff) | |
download | plantagenet-02b760570cb1cc91cfc22f3fffccf8b7bdd8a215.tar.gz |
Levy troops not possible in exile
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1642,7 +1642,7 @@ function is_friendly_locale(loc) { } function can_add_troops(lordwho, locale) { - if (has_exhausted_marker(locale)) + if (has_exhausted_marker(locale) || is_exile(locale)) return false else return true |