diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-12-11 15:54:56 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-11 20:26:34 +0100 |
commit | 66e6dec72f237dcc9fc9b22a2b052f1f80924225 (patch) | |
tree | a86083c8f6c6bbd617612f584d01149b3c691b85 | |
parent | 28f9e4a862ce46d00c00b64164e5e0ea7be3e6b4 (diff) | |
download | votes-for-women-66e6dec72f237dcc9fc9b22a2b052f1f80924225.tar.gz |
Strategy Phase: Done -> Commit.
-rw-r--r-- | play.js | 1 | ||||
-rw-r--r-- | rules.js | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -880,6 +880,7 @@ function on_update() { // eslint-disable-line no-unused-vars action_button("yellow", "Yellow") action_button("roll", "Roll") action_button("reroll", "Re-roll") + action_button("commit", "Commit") action_button("next", "Next") action_button("end_event", "End Event") action_button("next_turn", "Next Turn") @@ -889,7 +889,7 @@ states.strategy_phase = { if (game.support_buttons > 0) { gen_action("commit_1_button") } - gen_action("done") + gen_action("commit") } else { view.prompt = `Strategy: Suffragist committed ${pluralize(game.support_committed, 'button')}.` view.actions.defer = 0 @@ -915,7 +915,7 @@ states.strategy_phase = { game.support_committed += 1 }, - done() { + commit() { clear_undo() log(`Suffragist committed ${game.support_committed} BM`) game.active = OPP |