diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -7296,13 +7296,11 @@ states.vm_samizdat = { return `resolve ${clean_name(cards[game.played_card].name)}.`
},
prompt() {
- if (game.samizdat_card !==0) {
- view.prompt = 'Samizdat: you may set aside a card from your hand and draw a replacement.'
- for (let card of game.democrat_hand) {
- gen_action_card(card)
- }
- gen_action('pass')
+ view.prompt = 'Samizdat: you may set aside a card from your hand and draw a replacement.'
+ for (let card of game.democrat_hand) {
+ gen_action_card(card)
}
+ gen_action('pass')
},
card(card) {
push_undo()
|