From ff297a8ce31a2c92b8383d8ae4cbefb6cc048a64 Mon Sep 17 00:00:00 2001 From: teisuru <31881306+teisuru@users.noreply.github.com> Date: Thu, 30 Jan 2025 22:04:14 +0100 Subject: fix Y19 and Y21 not applying to jack cade --- rules.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rules.ts') diff --git a/rules.ts b/rules.ts index 9d23fbd..2aae7f7 100644 --- a/rules.ts +++ b/rules.ts @@ -1947,7 +1947,7 @@ function is_lancaster_dominating_north() { if (has_lancaster_favour(loc)) n++ let cap_lord = find_lord_with_capability_card(AOW_LANCASTER_NORTHMEN) - if (!is_levy_phase() && is_lancaster_lord(cap_lord) && is_north(get_lord_locale(cap_lord))) + if (is_lancaster_lord(cap_lord) && is_north(get_lord_locale(cap_lord))) return n >= 3 return n >= all_north_locales.length } @@ -1958,7 +1958,7 @@ function is_york_dominating_south() { if (has_york_favour(loc)) n++ let cap_lord = find_lord_with_capability_card(AOW_YORK_SOUTHERNERS) - if (!is_levy_phase() && is_york_lord(cap_lord) && is_south(get_lord_locale(cap_lord))) + if (is_york_lord(cap_lord) && is_south(get_lord_locale(cap_lord))) return n >= 5 return n >= all_south_locales.length } @@ -1977,7 +1977,7 @@ function is_york_dominating_wales() { if (has_york_favour(loc)) n++ let cap_lord = find_lord_with_capability_card(AOW_YORK_WELSHMEN) - if (!is_levy_phase() && is_york_lord(cap_lord) && is_wales(get_lord_locale(cap_lord))) + if (is_york_lord(cap_lord) && is_wales(get_lord_locale(cap_lord))) return n >= 3 return n >= all_wales_locales.length } -- cgit v1.2.3