diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -640,7 +640,7 @@ states.play_card ={ }, event() { push_undo() - check_ligachev_event() + check_ligachev_event(game.played_card) log_gap(`Played C${game.played_card} for the event`) game.vm_infl_to_do = false game.return = game.active @@ -2996,7 +2996,7 @@ function check_ligachev_non_event() { } } -function check_ligachev_event() { +function check_ligachev_event(card) { if (game.active === DEM && game.persistent_events.includes(C_LIGACHEV)) { if (card !== C_GORBACHEV_CHARMS_THE_WEST) { log(`-3 VP from C${C_LIGACHEV}`) @@ -7855,7 +7855,7 @@ states.vm_tst_8 = { }, event() { push_undo() - check_ligachev_event() + check_ligachev_event(game.played_card) log(`C${game.played_card}:`) game.vm_event_to_do = false game.return_state = 'vm_tst_8' |