From 063f321e3966b5013b391abccd91a49ab7427a3b Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sat, 3 Aug 2024 21:56:40 +0200 Subject: [PATCH] fix : unhide hand --- src/games/dto/read-games.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;