diff --git a/client/game/types.ts b/client/game/types.ts index e82a18b..472b158 100644 --- a/client/game/types.ts +++ b/client/game/types.ts @@ -73,7 +73,7 @@ export interface GameState { export type GameAction = | { type: 'set-player-team'; team: Team} | { type: 'receive-cards'; cards: Card[]} - | { type: 'update-state'; state: Omit } + | { type: 'update-state'; state: Omit } | { type: 'play-card', handIndex: number } export interface GameCommandAPI {