- {{ tieInf.self?.name || "Loading Player..."}}
+
+
+
+
+
+
+ Tie-Break Round
+
+ {{ isFlipping ? 'Your Result' : (model ? `Selection: Card #${model}` : 'Pick Your Card') }}
+
+
+
+
+
+
+
+ Hover and click to select a card from the deck
-
-
-
-
-
+
+
+
+ Tie-Break Round
+
+
+
+
+
+
{{ getPlayerName(playerId) }}
+
+
+
+
+
+
+
+
+
+
+ Waiting for {{ tieInf.currentPlayer?.name }} to pick a card...
+
+
-
-
-
-
- Waiting for {{ tieInf.currentPlayer?.name || 'the other player' }} to select card for the tie...
-
-
-
+
diff --git a/src/types/GameTypes.ts b/src/types/GameTypes.ts
index 9c3bca5..7998d26 100644
--- a/src/types/GameTypes.ts
+++ b/src/types/GameTypes.ts
@@ -5,7 +5,8 @@ import type {
PodiumPlayer,
Round,
Trick,
- User
+ User,
+ Card
} from "@/types/GameSubTypes.ts";
@@ -31,6 +32,7 @@ type TieInfo = {
self: Player | null
tiedPlayers: Player[]
highestAmount: number
+ selectedCards: Record
}
type TrumpInfo = {