diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-19 17:01:54 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-19 17:01:54 +0100 |
commit | 065ab5e64b856c1e03b965dcfd1d6649259a0bf5 (patch) | |
tree | 43f37aa6990704f6390d59fa5d32ff2a9a7dc23e | |
parent | 109a346abcfe6afe44b0efa925595e0417bc6719 (diff) | |
download | votes-for-women-065ab5e64b856c1e03b965dcfd1d6649259a0bf5.tar.gz |
sensible strategy actions when 0 buttons committed
-rw-r--r-- | rules.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -713,8 +713,7 @@ states.strategy_phase = { gen_action("done") } else { view.prompt = `Strategy: Suffragist committed ${pluralize(game.support_committed, 'button')}.` - // TODO sensible actions when 0 buttons committed - gen_action("defer") + view.actions.defer = game.support_committed > 0 view.actions.match = game.opposition_buttons >= game.support_committed view.actions.supersede = game.opposition_buttons > game.support_committed } |