diff --git a/src/games/dto/read-games.dto.ts b/src/games/dto/read-games.dto.ts index 1d19ee3..82dcd11 100644 --- a/src/games/dto/read-games.dto.ts +++ b/src/games/dto/read-games.dto.ts @@ -12,7 +12,7 @@ export class ReadPlayerDto extends DatabaseObjectDto { this.user = new ReadUserDto(data.user); this.board = new ReadContainerDto(data.board); this.discard = new ReadContainerDto(data.discard); - this.hand = new ReadContainerDto(data.hand, true); + this.hand = new ReadContainerDto(data.hand, false); this.stack = new ReadContainerDto(data.stack, true); this.race = data.race; this.class = data.class;