diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-27 23:57:53 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-27 23:57:53 +0000 |
commit | 48bc343259476c16aff0bbc5eee1c3e8feacec45 (patch) | |
tree | 084110804c64eb8bdbab1a9dfbf4c1f901f27f6d | |
parent | d6f177f42747ce702bfa763601461969605c4bba (diff) | |
download | 1989-dawn-of-freedom-48bc343259476c16aff0bbc5eee1c3e8feacec45.tar.gz |
Fix play card with new Ligachev code
-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) { |