diff --git a/src/domain/party/party.controller.ts b/src/domain/party/party.controller.ts index 034ada006c7277c58463ecc2ba4bccb889c8aec0..b8f30e4f0c2a46dee5b17b94d209eba1790c6c0f 100644 --- a/src/domain/party/party.controller.ts +++ b/src/domain/party/party.controller.ts @@ -116,11 +116,9 @@ export class PartyController { await this.partyService.createRun(player.id, user.Party.id); } - setTimeout(() => { - this.sseService.sendEvent(user.Party.id, { - type: 'gameStarted', - }); - }, 1000); + this.sseService.sendEvent(user.Party.id, { + type: 'gameStarted', + }); } @Get('question')