summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-10-11 23:08:36 +0200
committerTor Andersson <tor@ccxvii.net>2023-12-10 18:16:55 +0100
commitdd744cc6e79ac604253981957210f383e9b7c4a5 (patch)
treeb3fb2d50dabf7b1dede5e3de975ac4cfc7b1de4f /rules.js
parent947ced6f30f7a6dd633c9f0d70149edc4e11f3a7 (diff)
downloadplantagenet-dd744cc6e79ac604253981957210f383e9b7c4a5.tar.gz
oops!
Diffstat (limited to 'rules.js')
-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!