👥 Jugadores Conectados
{{ gameStats.connectedPlayers || 0 }}
🎮 Partidas Activas
{{ gameStats.activeGames || 0 }}
🎯 Ronda Actual
{{ gameStats.currentRound || 'N/A' }}
📊 Estado del Juego
{{ getGameStateText(gameStats.gameState) }}
🎛️ Control del Juego
👥 Lista de Jugadores ({{ gameStats.players?.length || 0 }})
{{ player.name }}
{{ player.isConnected ? '🟢' : '🔴' }}
Sala: {{ player.roomId?.slice(-6) || 'N/A' }}
{{ getRoleText(player.role) }}
{{ getProducerText(player.producerRole) }}
🦃 {{ player.tokens?.turkeys || 0 }}
☕ {{ player.tokens?.coffee || 0 }}
🌽 {{ player.tokens?.corn || 0 }}
Sin jugadores conectados
🔧 Debug Info
Última actualización: {{ lastUpdate }}
Conexión SSE: {{ isConnected ? 'Activa' : 'Inactiva' }}
Servidor: {{ serverUrl }}
Ver datos completos
{{ JSON.stringify(gameStats, null, 2) }}