diff --git a/Player/Entities.cs b/Player/Entities.cs index ec8442d3d..9989d4e99 100644 --- a/Player/Entities.cs +++ b/Player/Entities.cs @@ -156,6 +156,7 @@ namespace MCGalaxy { #endregion internal static string GetSupportedCol(Player dst, string col) { + if (col == null) return null; if (col.Length >= 2 && !Colors.IsStandardColor(col[1]) && !dst.HasCpeExt(CpeExt.TextColors)) col = "&" + Colors.GetFallback(col[1]); return col;