From a68c15ccf06f35f7c650f02417898270566f1328 Mon Sep 17 00:00:00 2001 From: Frans Bongers Date: Thu, 20 Mar 2025 21:29:12 +0100 Subject: fix issue with momentum medallion played during another players turn --- rules.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index d314c58..027681e 100644 --- a/rules.js +++ b/rules.js @@ -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() { -- cgit v1.2.3