1
0
mirror of https://github.com/thib8956/tic-tac-toe-ws.git synced 2024-09-29 06:06:37 +00:00

fix endgame

This commit is contained in:
Thibaud Gasser 2024-09-25 15:40:49 +02:00
parent a636abddbe
commit 15d9b89577

View File

@ -92,6 +92,7 @@ wss.on("connection", (ws) => {
kind: "endgame",
data: { issue: "lose" } as EndGame
} as Message));
endGame = true;
}
}
});