diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-26 12:19:50 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-26 12:19:50 +0100 |
commit | 6ed28de99b71c226bc5eff4343f1966f27d25889 (patch) | |
tree | 2034abd0ba392416f0ee3c6590bf757dcd73e109 | |
parent | 7ae5ef5d8c6bed300b733c0fafde941fda3a8f3b (diff) | |
download | votes-for-women-6ed28de99b71c226bc5eff4343f1966f27d25889.tar.gz |
fix final voting reroll dice count
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1243,7 +1243,7 @@ states.final_voting_roll = { }, reroll() { decrease_player_buttons(1) - game.roll = roll_ndx(game.count, game.dice, "Re-rolled") + game.roll = roll_ndx(1, game.dice, "Re-rolled") }, next() { next_player() |