diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-11 23:08:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | dd744cc6e79ac604253981957210f383e9b7c4a5 (patch) | |
tree | b3fb2d50dabf7b1dede5e3de975ac4cfc7b1de4f /rules.js | |
parent | 947ced6f30f7a6dd633c9f0d70149edc4e11f3a7 (diff) | |
download | plantagenet-dd744cc6e79ac604253981957210f383e9b7c4a5.tar.gz |
oops!
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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! |