diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-05-06 18:51:30 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:12:55 +0100 |
commit | b6af8b17db4cf325069fd22bb3dbdd607e3754b8 (patch) | |
tree | 7c0796e97b3033df04f5fbad812a8622af950809 | |
parent | a76a4e4ddebadedbb22cf0f5509c486278850238 (diff) | |
download | richard-iii-b6af8b17db4cf325069fd22bb3dbdd607e3754b8.tar.gz |
richard: Fix can_attempt_treason_event.
Check the right blocks!
-rw-r--r-- | rules.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -481,14 +481,14 @@ function can_defect(source, target) { } function can_attempt_treason_event() { - for (let b in BLOCKS) { - if (game.active == game.attacker[game.where]) { + if (game.treason == game.attacker[game.where]) { + for (let b in BLOCKS) if (is_defender(b) && can_defect(null, b)) return true; - } else { + } else { + for (let b in BLOCKS) if (is_attacker(b) && can_defect(null, b)) return true; - } } return false; } |