From 61d17b1caeb77c4f0a55fec58e6c1ee4e1357252 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 15 Nov 2025 01:23:15 +0100 Subject: [PATCH] modified: templates/quiz_buzzer.html --- templates/quiz_buzzer.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/quiz_buzzer.html b/templates/quiz_buzzer.html index 95d82cd..b27927f 100644 --- a/templates/quiz_buzzer.html +++ b/templates/quiz_buzzer.html @@ -249,8 +249,10 @@ // Wenn Musik anfÃĪngt zu spielen und Timer noch nicht gestartet wurde if (!state.paused && gameStarted && !startTime) { - console.log('Music started playing, starting timer now'); - startBuzzerTimer(); + console.log('Music started playing, starting timer in 1 second'); + setTimeout(() => { + startBuzzerTimer(); + }, 1000); } });