From 02b760570cb1cc91cfc22f3fffccf8b7bdd8a215 Mon Sep 17 00:00:00 2001 From: teisuru <31881306+teisuru@users.noreply.github.com> Date: Wed, 11 Oct 2023 20:45:09 +0200 Subject: Levy troops not possible in exile --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 93bde3d..662bfea 100644 --- a/rules.js +++ b/rules.js @@ -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 -- cgit v1.2.3