From f9e4fc45f7cfce1652f05ff79a129b68b103f4b1 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Sat, 2 Dec 2023 14:24:47 +0100 Subject: fix final voting pluralization error --- rules.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 4ad5cdf..6454ad8 100644 --- a/rules.js +++ b/rules.js @@ -1206,14 +1206,14 @@ function goto_final_voting() { game.state = "final_voting_select_state" } +function us_states_to_win() { + return (game.active === SUF) ? GREEN_CHECK_VICTORY - count_green_checks() : RED_X_VICTORY - count_red_xs() +} + states.final_voting_select_state = { inactive: "do Final Voting.", prompt() { - view.prompt = "Final Voting: Select a state." - if (game.active === SUF) - view.prompt += ` You need ${GREEN_CHECK_VICTORY - count_green_checks()} more States for victory.` - else - view.prompt += ` You need ${RED_X_VICTORY - count_red_xs()} more States for victory.` + view.prompt = `Final Voting: Select a State. You need ${pluralize(us_states_to_win(), 'more State')} for victory.` let us_states = ANYWHERE.slice() set_filter(us_states, s => !(is_green_check(s) || is_red_x(s))) -- cgit v1.2.3