diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1925,7 +1925,9 @@ states.swap_card_tableau_hand = { }, skip() { const faction = get_active_faction(); - game.selected_cards[faction].length = 1; + const { s: selected_at_start } = get_active_node_args(); + game.selected_cards[faction].length = selected_at_start; + ; resolve_active_and_proceed(); }, }; |