From 47bad382d60e7793e3677ceab5dd858ac241fae3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 28 Apr 2024 22:41:43 +0200 Subject: invert montagu logic for my simple brain to understand it. --- rules.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rules.ts b/rules.ts index 31114f8..fb522c3 100644 --- a/rules.ts +++ b/rules.ts @@ -6468,9 +6468,9 @@ function can_play_for_trust_not_him() { for (let vassal of all_vassals) { if (is_vassal_mustered_with_york_lord(vassal) && get_lord_locale(get_vassal_lord(vassal)) === get_lord_locale(game.command)) { // Hastings & Salisbury with Alice Montagu capability are immune. - if ((get_vassal_lord(vassal) !== LORD_SALISBURY || !lord_has_capability(LORD_SALISBURY, AOW_YORK_ALICE_MONTAGU)) && vassal !== VASSAL_HASTINGS) { - return true - } + if (vassal === VASSAL_HASTINGS && get_vassal_lord(vassal) === LORD_SALISBURY && lord_has_capability(LORD_SALISBURY, AOW_YORK_ALICE_MONTAGU)) + return false + return true } } return false -- cgit v1.2.3