fix(backend): check that player socket exists before trying to send data

This commit is contained in:
2025-03-11 12:35:38 +01:00
parent 49e84eaac7
commit 889ee4ce4f
2 changed files with 7 additions and 0 deletions

View File

@ -141,6 +141,9 @@ func OnPlayerStateUpdate(room *types.Room, player *types.Player, skipDBUpdate bo
if !skipDBUpdate {
db.Conn.UpdateRoom(room)
}
if player.Connection.Socket == nil {
return
}
player.Connection.Socket.Emit("OwnCards", types.BuildOwnCardsPacket(room, player))
BroadcastInRoom(room, "PlayerState", types.BuildPlayerStatePacket(room, player))
}