diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-11-29 14:08:21 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-11-29 14:08:21 +0100 |
commit | f3e6ffd6369cb2de46a3bf1ee1363bbf7985fa11 (patch) | |
tree | c511d2ec1b20a20644c691087567a21e61dc8643 /rules.js | |
parent | c0b6808daab53262fff02fee5d1d5fcebf5f22d4 (diff) | |
download | 1989-dawn-of-freedom-f3e6ffd6369cb2de46a3bf1ee1363bbf7985fa11.tar.gz |
more constants
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1719,7 +1719,7 @@ states.end_turn_4_5_4 = { goto_game_over(DEM, `${DEM} won by held scoring card!`) } else if (game.persistent_events.includes(C_NEW_YEARS_EVE_PARTY)) { log_h1(`New Year's Eve Party`) - game.vm_event = 104 + game.vm_event = C_NEW_YEARS_EVE_PARTY // Check if the Communist receives VP from The Tyrant is Gone if (game.the_tyrant_is_gone && game.the_tyrant_is_gone > 0) { game.vp -= 2 @@ -1931,7 +1931,7 @@ states.honecker = { states.new_years_eve_party = { get inactive() { - return `resolve ${card_name[104]}.` + return `resolve ${card_name[C_NEW_YEARS_EVE_PARTY]}.` }, prompt() { if (!game.is_pwr_struggle) { |