feat(deck-hexv1): implement experimental HexV1 card deck

This commit is contained in:
2025-03-28 00:05:10 +01:00
parent 4104b01978
commit 2cfcd0089f
4 changed files with 217 additions and 1 deletions

View File

@ -39,7 +39,7 @@ func CreateRoom() *types.Room {
GameState: types.StateLobby,
Players: make([]*types.Player, 0),
PlayersMutex: &sync.Mutex{},
CardDeckId: 0,
CardDeckId: 1,
}
db.Conn.InsertRoom(newRoom)