diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-25 15:10:06 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-25 15:10:06 +0100 |
commit | dfc150fd6d8490747f3e9dbd8a7e01158d809518 (patch) | |
tree | a68882a1584a59692db4188a68c0d600f80d265f | |
parent | 51cb0a52241ee6b7f0105bc67c4167ee19a5a136 (diff) | |
download | votes-for-women-dfc150fd6d8490747f3e9dbd8a7e01158d809518.tar.gz |
fix organize action
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() { |