diff options
-rw-r--r-- | rules.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3225,7 +3225,7 @@ function end_round() { } else { card_check = [...game.strategy_deck, ...game.strategy_discard, ...game.strategy_removed, ...game.persistent_events, ...game.communist_hand, ... game.democrat_hand]; } - + card_check = card_check.filter(card => card <= last_strategy_card) function check_duplicates(array) { return new Set(array).size !== array.length; } @@ -5138,9 +5138,10 @@ function vm_tank_column() { return } else if (game.com_tst_position === 4 && game.dem_tst_position < 4) { - game.vm_event = 204} + game.vm_event = 204 goto_vm(game.vm_event) return + } } vm_next() } |