From a235dda964d753f0b3a3f8abdd5fe2653c644dda Mon Sep 17 00:00:00 2001 From: iainp5 Date: Sat, 21 Dec 2024 16:45:35 +0000 Subject: Remove double fullstop from inactive prompt --- rules.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 4736189..8fd76c2 100644 --- a/rules.js +++ b/rules.js @@ -1232,7 +1232,7 @@ states.draw_power_cards = { states.the_crowd_turns_against_ceausescu_prep = { get inactive() { - return `resolve ${card_name[C_THE_CROWD_TURNS_AGAINST_CEAUSESCU]}.` + return `resolve ${card_name[C_THE_CROWD_TURNS_AGAINST_CEAUSESCU]}` }, prompt() { view.prompt = 'The Crowd Turns Against Ceausescu: Draw cards.' @@ -1251,7 +1251,7 @@ states.the_crowd_turns_against_ceausescu_prep = { states.vm_the_crowd_turns_against_ceausescu = { get inactive() { - return `resolve ${card_name[C_THE_CROWD_TURNS_AGAINST_CEAUSESCU]}.` + return `resolve ${card_name[C_THE_CROWD_TURNS_AGAINST_CEAUSESCU]}` }, prompt() { view.prompt = `You have ${game.vm_available_ops} operations points. Play for:` @@ -2023,7 +2023,7 @@ states.honecker = { states.new_years_eve_party = { get inactive() { - return `resolve ${card_name[C_NEW_YEARS_EVE_PARTY]}.` + return `resolve ${card_name[C_NEW_YEARS_EVE_PARTY]}` }, prompt() { if (!game.is_pwr_struggle) { @@ -2227,7 +2227,7 @@ states.stasi_resolve_common_european_home = { states.stasi_play_ceh = { get inactive() { - return `play ${quoted_card_name[game.played_card]}.` + return `play ${quoted_card_name[game.played_card]}` }, prompt() { view.prompt = "Play " + quoted_card_name[game.played_card] -- cgit v1.2.3