summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 7cdf118..8df8e9a 100644
--- a/rules.js
+++ b/rules.js
@@ -1400,7 +1400,7 @@ function has_locale_to_muster(lord) {
// Else, can muster at any friendly seat (of a friendly lord who is also in play)
for (let other = first_friendly_lord; other <= last_friendly_lord; other++)
- if (!is_lord_in_play(other) && is_friendly_locale(data.lords[other].seat))
+ if (is_lord_in_play(other) && is_friendly_locale(data.lords[other].seat))
return true
// Tough luck!