summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-04-23 14:39:53 +0200
committerTor Andersson <tor@ccxvii.net>2024-04-23 14:51:41 +0200
commitfd473c515871aa57dc21483110f9eba0df7ddf98 (patch)
treefc26b4d7b03a6b61203444408bfe25a9efc676d2
parent75b1985ff2d1245434b977d68429c47527abd3cb (diff)
downloadplantagenet-fd473c515871aa57dc21483110f9eba0df7ddf98.tar.gz
naval blockade only affects lancaster
-rw-r--r--rules.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.ts b/rules.ts
index 3d2565a..b4763df 100644
--- a/rules.ts
+++ b/rules.ts
@@ -10250,7 +10250,7 @@ function is_naval_blockade_in_play() {
}
function can_naval_blockade(here: Locale) {
- if (is_naval_blockade_in_play())
+ if (game.active === LANCASTER && is_naval_blockade_in_play())
return is_on_same_sea(here, get_lord_locale(LORD_WARWICK_Y))
return false
}