diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-12-09 15:34:57 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-12-09 15:34:57 +0100 |
commit | 82b21e6c164fe02e38f0db5c53d5fdc19443202b (patch) | |
tree | 61244a7004c9db406d0efeb670b726dd7480d88c /rules.js | |
parent | a7eb28474e424d8fa549537486e5184e0fba0e34 (diff) | |
download | votes-for-women-82b21e6c164fe02e38f0db5c53d5fdc19443202b.tar.gz |
[buttons] instead of [next]
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1802,9 +1802,9 @@ states.organizing = { inactive: "receive buttons.", prompt() { view.prompt = `Organizing: Receive ${pluralize(game.count, 'button')}` - gen_action("next") + gen_action("buttons") }, - next() { + buttons() { push_undo() if (game.count) increase_player_buttons(game.count) @@ -2484,9 +2484,9 @@ states.vm_receive_buttons = { inactive: "receive buttons.", prompt() { event_prompt(`Receive ${pluralize(game.vm.count, 'button')}`) - gen_action("next") + gen_action("buttons") }, - next() { + buttons() { push_undo() increase_player_buttons(game.vm.count) vm_next() @@ -2497,9 +2497,9 @@ states.vm_spend_buttons = { inactive: "spend buttons.", prompt() { event_prompt(`Spend ${pluralize(game.vm.count, 'button')}`) - gen_action("next") + gen_action("buttons") }, - next() { + buttons() { push_undo() decrease_player_buttons(game.vm.count) vm_next() @@ -2510,9 +2510,9 @@ states.vm_opponent_loses_buttons = { inactive: "make you lose buttons.", prompt() { event_prompt(`Opponent loses ${pluralize(game.vm.count, 'button')}`) - gen_action("next") + gen_action("buttons") }, - next() { + buttons() { push_undo() decrease_opponent_buttons(game.vm.count) vm_next() |