summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-05-06 18:51:30 +0200
committerTor Andersson <tor@ccxvii.net>2022-11-16 19:12:55 +0100
commitb6af8b17db4cf325069fd22bb3dbdd607e3754b8 (patch)
tree7c0796e97b3033df04f5fbad812a8622af950809
parenta76a4e4ddebadedbb22cf0f5509c486278850238 (diff)
downloadrichard-iii-b6af8b17db4cf325069fd22bb3dbdd607e3754b8.tar.gz
richard: Fix can_attempt_treason_event.
Check the right blocks!
-rw-r--r--rules.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/rules.js b/rules.js
index 7ae65d1..f4340ea 100644
--- a/rules.js
+++ b/rules.js
@@ -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;
}