Fix resumeRound: send resume_round type instead of open_round to preserve buzzes

This commit is contained in:
2026-04-08 19:11:02 -05:00
parent a9ccb42008
commit b9d3b6115a

View File

@@ -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(){