Change timer interval for new spirits to 30 seconds

This commit is contained in:
2025-05-28 04:42:15 +02:00
parent 50564be1c5
commit 513b6d807c

View File

@@ -53,7 +53,7 @@ function pushSpiritToAllClients() {
console.log(`Spirit "${spirit.Name}" wurde an alle Clients gepusht.`);
}
// --- Timer: Alle 20 Sekunden neues Spirit ---
// --- Timer: Alle 30 Sekunden neues Spirit ---
setInterval(() => {
currentSpiritIndex = Math.floor(Math.random() * spirits.length);
pushSpiritToAllClients();