summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-25 15:10:06 +0100
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-25 15:10:06 +0100
commitdfc150fd6d8490747f3e9dbd8a7e01158d809518 (patch)
treea68882a1584a59692db4188a68c0d600f80d265f
parent51cb0a52241ee6b7f0105bc67c4167ee19a5a136 (diff)
downloadvotes-for-women-dfc150fd6d8490747f3e9dbd8a7e01158d809518.tar.gz
fix organize action
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 610972c..4af8c48 100644
--- a/rules.js
+++ b/rules.js
@@ -969,7 +969,7 @@ function can_campaign() {
}
function can_organize() {
- return (game.active === SUF && game.support_buttons < MAX_SUPPORT_BUTTONS) || (game.active === OPP && game.opponent_buttons < MAX_OPPOSITION_BUTTONS)
+ return (game.active === SUF && game.support_buttons < MAX_SUPPORT_BUTTONS) || (game.active === OPP && game.opposition_buttons < MAX_OPPOSITION_BUTTONS)
}
function can_lobby() {