diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2025-01-30 22:04:14 +0100 |
---|---|---|
committer | teisuru <31881306+teisuru@users.noreply.github.com> | 2025-01-31 00:19:44 +0100 |
commit | ff297a8ce31a2c92b8383d8ae4cbefb6cc048a64 (patch) | |
tree | d375e85c3caf6e2fb5d8d2c3b552f08a6d4e39e5 | |
parent | 0374d8a8382112cc2ed82c0ec06ab5b0ecdf40ba (diff) | |
download | plantagenet-ff297a8ce31a2c92b8383d8ae4cbefb6cc048a64.tar.gz |
fix Y19 and Y21 not applying to jack cade
-rw-r--r-- | rules.js | 6 | ||||
-rw-r--r-- | rules.ts | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -1473,7 +1473,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; } @@ -1483,7 +1483,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; } @@ -1500,7 +1500,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; } @@ -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 } |