When a color can't be translated set to NONE instead of null

This commit is contained in:
bundabrg 2020-06-01 18:35:57 +08:00
parent d7f000b455
commit 8533e28785

View file

@ -28,7 +28,7 @@ public enum ChatColor {
}
}
return null;
return ChatColor.NONE;
}
@Override