diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -3807,13 +3807,11 @@ states.papal_legate_active = { gen_action_locale(loc) for (let lord = first_friendly_lord; lord <= last_friendly_lord; ++lord) { - if (no_muster_of_or_by_lord(lord)) - continue - // Seat of a Ready Lord without rolling if (is_lord_ready(lord)) { if (is_lord_seat(lord, here)) - gen_action_lord(lord) + if (!no_muster_of_or_by_lord(lord)) + gen_action_lord(lord) } // Seat of a Lord on the Calendar @@ -3825,7 +3823,8 @@ states.papal_legate_active = { // At a Friendly Locale with a Lord else if (is_lord_on_map(lord)) { if (get_lord_locale(lord) === here && is_friendly_locale(here)) - gen_action_lord(lord) + if (!no_muster_of_or_by_lord(lord)) + gen_action_lord(lord) } } }, |