diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1553,9 +1553,11 @@ states.player_turn = { resolve_spend_hp(); }, end_turn() { - game.faction_turn = null; - game.played_card = null; - game.selected_cards[get_active_faction()] = []; + if (game.faction_turn === get_active_faction()) { + game.faction_turn = null; + game.played_card = null; + game.selected_cards[get_active_faction()] = []; + } resolve_active_and_proceed(true); }, play_to_tableau() { |