1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-26 18:29:21 +00:00

Add check to fix NONE team color causing an NPE (#1602)

This commit is contained in:
rtm516
2020-11-28 15:10:19 +00:00
committed by GitHub
parent 0215c383b0
commit eb687e6638

View File

@@ -234,6 +234,10 @@ public class MessageTranslator {
* @return The chat color character
*/
public static String toChatColor(TeamColor teamColor) {
if (teamColor.equals(TeamColor.NONE)) {
return "";
}
NamedTextColor textColor = NamedTextColor.NAMES.value(teamColor.name().toLowerCase());
if (textColor != null) {
return getColor(textColor);