diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6018,6 +6018,7 @@ states.vm_brought_in_for_questioning = { }, discard() { clear_undo() + log(`C${C_BROUGHT_IN_FOR_QUESTIONING}:`) game.vm_event = discard_card(game.democrat_hand) game.phase = 1 if (cards[game.vm_event].side === 'C' && (cards[game.vm_event].playable || game.playable_cards.includes(game.vm_event))) { @@ -6650,6 +6651,7 @@ states.vm_kiss_of_death = { }, discard() { clear_undo() + log(`C${C_KISS_OF_DEATH}:`) game.vm_event = discard_card(game.communist_hand) //Change player before checking if event is playable. Common European Home is not playable here change_player() |