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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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);