modified: templates/quiz_buzzer.html

This commit is contained in:
2025-11-15 01:23:15 +01:00
parent db1f3bb092
commit 61d17b1cae

View File

@@ -249,8 +249,10 @@
// Wenn Musik anfängt zu spielen und Timer noch nicht gestartet wurde // Wenn Musik anfängt zu spielen und Timer noch nicht gestartet wurde
if (!state.paused && gameStarted && !startTime) { if (!state.paused && gameStarted && !startTime) {
console.log('Music started playing, starting timer now'); console.log('Music started playing, starting timer in 1 second');
setTimeout(() => {
startBuzzerTimer(); startBuzzerTimer();
}, 1000);
} }
}); });