Fixes #4; Show game stats instead of UUIDs in lobby
release-tag / release-image (push) Successful in 57s

This commit is contained in:
2024-05-12 12:06:05 +02:00
parent 4dc370de12
commit 82994274c1
6 changed files with 92 additions and 65 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ export type Player = Omit<PlayerNetcode, 'discard_pile' | 'stack_pile' | 'hand'
discard_pile: Array<Card>
hand: Array<Card | null>
board: Array<Card>
team: Team
turn: Turn
team: Team | undefined
turn: Turn | undefined
}
export function create_player(input: PlayerNetcode, register: GameObjectRegister) {
return new Proxy<any>(input, {