From 57c5f4e0546577cf6cfd40b3a381d978b37beaba Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Wed, 8 Apr 2026 20:31:08 -0500 Subject: [PATCH] Open Round: start timer if toggle ON, regardless of current value --- src/public/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/script.js b/src/public/script.js index 09348eb..c62750c 100644 --- a/src/public/script.js +++ b/src/public/script.js @@ -402,7 +402,7 @@ function toggleRound(){ } else { ws_send({type:'open_round'}); // If linked (toggle ON) and timer stopped, reset and start it - if(document.getElementById('timer-tog').checked && !modTimerRunning && modTimerRemaining===0){ + if(document.getElementById('timer-tog').checked && !modTimerRunning){ modTimerLoad(); modTimerRunning=true; document.getElementById('btn-timer-ss').textContent='PAUSE';