diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-12-06 21:21:21 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-12-06 21:21:21 +0100 |
commit | df5151a3b7958fd8eeea1606bd204b6d8b52d8a8 (patch) | |
tree | 0dcf907b1a1c0bf1c3c2c85742b1725b98abb1cc | |
parent | b0697e2a3bc760990c17b2751458007b030a5f21 (diff) | |
download | votes-for-women-df5151a3b7958fd8eeea1606bd204b6d8b52d8a8.tar.gz |
shorter final voting prompt and logging
-rw-r--r-- | rules.js | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -1362,12 +1362,13 @@ states.final_voting_roll = { let support_total = game.support_roll + game.support_drm let opposition_total = game.opposition_roll + game.opposition_drm - view.prompt += `Suffragist rolled ${game.support_roll}` + view.prompt += `${game.support_roll}` if (game.support_drm) view.prompt += ` (+${game.support_drm}) = ${support_total}` - view.prompt += `, Opposition rolled ${game.opposition_roll}` + view.prompt += ` Yea, ${game.opposition_roll}` if (game.opposition_drm) view.prompt += ` (+${game.opposition_drm}) = ${opposition_total}` + view.prompt += " Nay" if (support_total === opposition_total) view.prompt += `. ${game.tie_winner} leads on tie.` else @@ -1421,11 +1422,20 @@ function finalize_vote() { let opposition_total = game.opposition_roll + game.opposition_drm log_br() - log(`${game.support_roll} (+${game.support_drm}) = ${support_total} vs. ${game.opposition_roll} (+${game.opposition_drm}) = ${opposition_total}`) + let result = `${game.support_roll}` + if (game.support_drm) + result += ` (+${game.support_drm}) = ${support_total}` + result += ` Yea vs. ${game.opposition_roll}` + if (game.opposition_drm) + result += ` (+${game.opposition_drm}) = ${opposition_total}` + result += " Nay." + log(result) + // log(`${game.support_roll} (+${game.support_drm}) = ${support_total} Yea vs. ${game.opposition_roll} (+${game.opposition_drm}) = ${opposition_total} Nay`) + if (support_total === opposition_total) - log(`${game.tie_winner} wins on tie.`) + log(`${game.tie_winner} won on tie.`) else - log(`${game.voting_winner} wins.`) + log(`${game.voting_winner} won.`) if (game.voting_winner === SUF) ratify_nineteenth_amendment(game.selected_us_state) |