refactor: update player marker display to show label if available for improved clarity

This commit is contained in:
MayaTheShy
2026-02-20 04:32:02 -05:00
parent 8f23aa5caa
commit af2c978185

View File

@@ -978,7 +978,7 @@ function PlayerMarker({ player }) {
outlineWidth={0.05}
outlineColor="#000000"
>
Player {player.playerID}
{player.label || `Player ${player.playerID}`}
</Text>
</group>
);