From ffdbc78193db6cf35b7ac2c9e964dd4b70ffd536 Mon Sep 17 00:00:00 2001 From: Resistencia Dev Date: Fri, 5 Dec 2025 22:45:00 +0100 Subject: [PATCH] =?UTF-8?q?Feature:=20Agregar=20estrella=20verde=20para=20?= =?UTF-8?q?miembros=20del=20equipo=20de=20misi=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add: Icono de estrella ⭐ verde para identificar miembros del equipo - Fix: Diferencia clara entre líder (L amarillo) y miembros del equipo (⭐ verde) - Visible durante fases MISSION, MISSION_REVEAL y MISSION_RESULT --- client/src/components/GameBoard.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/client/src/components/GameBoard.tsx b/client/src/components/GameBoard.tsx index e7b9f56..48e924f 100644 --- a/client/src/components/GameBoard.tsx +++ b/client/src/components/GameBoard.tsx @@ -618,6 +618,13 @@ export default function GameBoard({ gameState, currentPlayerId, actions }: GameB L )} + + {/* Icono de Miembro del Equipo de Misión */} + {gameState.proposedTeam.includes(player.id) && (gameState.phase === GamePhase.MISSION || gameState.phase === 'mission_reveal' as any || gameState.phase === 'mission_result' as any) && ( +
+ ⭐ +
+ )} {/* Nombre */}