From ce60a6237637c376dea9cc52ed5d317517c592fc Mon Sep 17 00:00:00 2001 From: James Harker Date: Thu, 24 Oct 2024 12:40:34 +0100 Subject: [PATCH] twenty-second-round-end-timer --- api/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/index.js b/api/index.js index aaef6f2..4f65cc0 100644 --- a/api/index.js +++ b/api/index.js @@ -127,7 +127,7 @@ io.on("connection", (socket) => { function startNextRoundTimer(gameId) { if (games[gameId]) { - let timeRemaining = 30; + let timeRemaining = 20; io.to(gameId).emit("start_timer", timeRemaining); let timer = setInterval(() => { timeRemaining -= 1;