diff --git a/QSB/HUD/PlayerBox.cs b/QSB/HUD/PlayerBox.cs index e634df53..3a59e16f 100644 --- a/QSB/HUD/PlayerBox.cs +++ b/QSB/HUD/PlayerBox.cs @@ -28,7 +28,9 @@ public class PlayerBox : MonoBehaviour if (player.Name != null) { - PlayerName.text = player.Name.ToUpper(); + Delay.RunWhen( + () => player.Name != null, + () => PlayerName.text = player.Name.ToUpper()); } InfoImage.sprite = MultiplayerHUDManager.UnknownSprite;