diff options
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -67,9 +67,10 @@ export interface View { victory?: string; location?: string; selected?: string; - + fronts: Game['fronts']; current_events: CardId[]; hand: CardId[]; + tracks: number[]; } // interface State { @@ -160,7 +161,9 @@ function game_view(state: Game, player: Player) { location: game.location, selected: game.selected, current_events: game.current_events, + fronts: game.fronts, hand: game.hands[faction_id], + tracks: game.tracks }; if (player !== game.active) { |