From 846df22740ec71f9aba3fa52351ce8de1a34435f Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 23 Mar 2025 11:39:44 +0100 Subject: Skip player turn when they had no cards to play. More robust handling of edge case. --- rules.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'rules.ts') diff --git a/rules.ts b/rules.ts index 7a9fef4..1469ece 100644 --- a/rules.ts +++ b/rules.ts @@ -289,11 +289,12 @@ function setup_player_turn(faction_id: FactionId) { * having played Momentum medallion in a previous turn. * This will skip their turn */ - const next_next_faction = get_next_faction_in_player_order(next_faction); - if (game.selected_cards[next_next_faction].length > 0) - setup_player_turn(get_next_faction_in_player_order(next_next_faction)); - else - throw new Error("impossible situation"); + log_header("Skipped Turn", next_faction); + log("No cards in hand."); + game.engine = [ + create_function_node('end_of_player_turn', { f: next_faction }) + ]; + next(); } } -- cgit v1.2.3