From 45cc295ecbbf5f1562897ab32e68fb3763ba3c86 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 21 Aug 2023 23:58:27 +0200 Subject: Disallow Muster of Lord at not Friendly locale using Legate. --- rules.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index d2a3fc2..04f6c67 100644 --- a/rules.js +++ b/rules.js @@ -3819,13 +3819,14 @@ states.papal_legate_active = { for (let lord = first_friendly_lord; lord <= last_friendly_lord; ++lord) { // Seat of a Ready Lord without rolling if (is_lord_ready(lord)) { - if (is_lord_seat(lord, here)) + if (is_lord_seat(lord, here) && is_friendly_locale(here)) if (!no_muster_of_or_by_lord(lord)) gen_action_lord(lord) } // Seat of a Lord on the Calendar else if (is_lord_on_calendar(lord)) { + // allow shifting even if not at a friendly locale if (is_lord_seat(lord, here)) gen_action_lord(lord) } -- cgit v1.2.3