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); } });