Remove commented-out code from server.js

This commit is contained in:
2025-05-28 05:47:20 +02:00
parent 3334894114
commit 225660c716

View File

@@ -28,15 +28,6 @@ try {
// --- WebSocket Logik ---
wss.on('connection', (socket) => {
console.log('Neuer Client verbunden');
// Sende sofort den aktuellen Spirit
/*
if (typeof currentSpiritIndex === 'number') {
socket.send(JSON.stringify({
type: 'spirit',
data: spirits[currentSpiritIndex]
}));
}*/
});
// --- Spirit-Zeitsteuerung ---