From b9d3b6115a5e7b249b10487e02562cc1d4bf1f96 Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Wed, 8 Apr 2026 19:11:02 -0500 Subject: [PATCH] Fix resumeRound: send resume_round type instead of open_round to preserve buzzes --- src/public/script.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/public/script.js b/src/public/script.js index 275b99a..ffe5ae2 100644 --- a/src/public/script.js +++ b/src/public/script.js @@ -354,10 +354,8 @@ function toggleRound(){ } function resumeRound(){ - // Open round WITHOUT resetting buzzes (for accidental close recovery) - // We need to open the round but keep existing buzzer state - // For now, this just opens the round - ws_send({type:'open_round'}); + // Open round WITHOUT clearing existing buzzes (for accidental close recovery) + ws_send({type:'resume_round'}); } function renderRoundButtons(){