diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2024-02-18 12:31:41 +0100 |
---|---|---|
committer | teisuru <31881306+teisuru@users.noreply.github.com> | 2024-02-18 12:31:41 +0100 |
commit | e91f7643324a5819937897d064848412f4d8748a (patch) | |
tree | 58412188333de814c132872f0ecfeacd81082317 | |
parent | a53e3470ffa5d82c1a35b05178acd5ae6b56fb78 (diff) | |
download | plantagenet-e91f7643324a5819937897d064848412f4d8748a.tar.gz |
fix welsh rebellion
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3248,7 +3248,7 @@ states.welsh_rebellion_remove_favour = { function end_welsh_rebellion() { for (let lord = first_york_lord; lord <= last_york_lord; ++lord) { - if (is_lord_in_wales(lord) && !has_no_unrouted_forces(lord)) + if (is_lord_on_map(lord) && is_lord_in_wales(lord) && !lord_has_unrouted_units(lord)) disband_lord(lord, false) } game.count = 0 |