diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-21 16:45:35 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-21 16:45:35 +0000 |
commit | a235dda964d753f0b3a3f8abdd5fe2653c644dda (patch) | |
tree | d7a949bbf55e97018fd19ad7e12783141a23823c | |
parent | 05746e9738e4903ce53578353af5d0f7274dd142 (diff) | |
download | 1989-dawn-of-freedom-a235dda964d753f0b3a3f8abdd5fe2653c644dda.tar.gz |
Remove double fullstop from inactive prompt
-rw-r--r-- | rules.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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] |