diff --git a/server/src/events/NewHand.ts b/server/src/events/NewHand.ts index 7acb880..51a04be 100644 --- a/server/src/events/NewHand.ts +++ b/server/src/events/NewHand.ts @@ -36,7 +36,7 @@ export default (io: Server, socket: Socket, data: NewHand) => { // Add the questions and then alert the game clients about the changes team.addCardsToHand(deck.draw(handSize)); game.log.silly(`Drew a new hand of cards for team ${data.team}.`); - io.to(game.id).emit(`UpdateHand`, { + io.to(`${game.id}:${team.id}:guesser`).emit(`UpdateHand`, { status: 200, mode: `replace`, questions: team.hand,