Fixed "RESET is not a style/color" error.

This commit is contained in:
Stefan923 2020-05-10 17:18:48 +03:00 committed by BrowkS
parent c42949ec59
commit 4d05b4a376
1 changed files with 8 additions and 4 deletions

View File

@ -65,10 +65,14 @@ public class TextUtil {
text = "";
}
ChatColor tempColor = ChatColor.getByChar(chars[i + 1]);
if (tempColor.isColor()) {
color = tempColor;
} else {
style = tempColor;
if (tempColor != null) {
if (tempColor == ChatColor.RESET) {
color = ChatColor.WHITE;
} else if (tempColor.isColor()) {
color = tempColor;
} else {
style = tempColor;
}
}
i++; // skip color char
} else {