diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2981,6 +2981,7 @@ function select_card(card){ game.democrat_hand.splice(find_card, 1) } game.available_ops = get_card_ops(card) + game.state = 'play_card' } function check_ligachev_non_event() { @@ -2993,7 +2994,6 @@ function check_ligachev_non_event() { game.persistent_events = game.persistent_events.filter(n => n !== C_LIGACHEV) game.strategy_removed.push(C_LIGACHEV) } - game.state = 'play_card' } function check_ligachev_event() { @@ -3008,7 +3008,6 @@ function check_ligachev_event() { game.persistent_events = game.persistent_events.filter(n => n !== C_LIGACHEV) game.strategy_removed.push(C_LIGACHEV) } - game.state = 'play_card' } function is_auto_resolve(card) { |