summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/rules.ts b/rules.ts
index 0473b25..3e038f4 100644
--- a/rules.ts
+++ b/rules.ts
@@ -3547,9 +3547,8 @@ function can_add_troops_beloved_warwick(lord: Lord, here: Locale) {
function can_add_troops_irishmen(lord: Lord, here: Locale) {
return (
- can_add_troops(here) &&
- lord_has_capability(lord, AOW_YORK_IRISHMEN) &&
- (here === LOC_IRELAND || is_adjacent_irish_sea(here))
+ (here === LOC_IRELAND || (is_adjacent_irish_sea(here) && can_add_troops(here))) &&
+ lord_has_capability(lord, AOW_YORK_IRISHMEN)
)
}