-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Minor
-
None
-
Affects Version/s: None
-
None
CraftPlayer.java Line 184 calls
CraftChatMessage.fromString(name)
that calls:
CraftChatMessage.fromString(name, EnumChatFormat.BLACK)
, as a default color, that means, that if a player's name starts with black, it will show white. the fix is easy, just call
CraftChatMessage.fromString(name, EnumChatFormat.WHITE)
instead.