summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index 2bf4d38..4f5b355 100644
--- a/rules.js
+++ b/rules.js
@@ -1617,7 +1617,7 @@ states.end_turn_4_5_4 = {
goto_game_over(DEM, `${DEM} won by held scoring card!`)
}
else if (game.persistent_events['new_years_eve_party']) {
- log('No held scoring cards')
+ log_h2(`New Year's Eve Party`)
game.state = 'new_years_eve_party'
}
else if(game.turn === 10) {
@@ -1797,7 +1797,7 @@ states.new_years_eve_party = {
},
prompt() {
if (!game.is_pwr_struggle) {
- view.prompt = 'You may choose a country to have a final power struggle.'
+ view.prompt = `New Year's Eve Party: you may choose a country to have a final power struggle.`
if (!game.revolutions['East_Germany']) {gen_action('east_germany')}
if (!game.revolutions['Poland']) {gen_action('poland')}
if (!game.revolutions['Czechoslovakia']) {gen_action('czechoslovakia')}
@@ -3334,7 +3334,7 @@ function check_control_change(space_id) {
// Check if the Tyrant is Gone has been fulfilled
if (game.persistent_events['the_tyrant_is_gone'] > 0 && game.pieces[game.persistent_events['the_tyrant_is_gone']].demCtrl === 1) {
- log('+2 VP from The Tyrant is Gone')
+ log('+2 VP from C97')
game.vp += 2
game.persistent_events['the_tyrant_is_gone'] = 0
}