diff options
-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 |