Fixed "RESET is not a style/color" error.
This commit is contained in:
parent
c42949ec59
commit
4d05b4a376
@ -65,11 +65,15 @@ public class TextUtil {
|
||||
text = "";
|
||||
}
|
||||
ChatColor tempColor = ChatColor.getByChar(chars[i + 1]);
|
||||
if (tempColor.isColor()) {
|
||||
if (tempColor != null) {
|
||||
if (tempColor == ChatColor.RESET) {
|
||||
color = ChatColor.WHITE;
|
||||
} else if (tempColor.isColor()) {
|
||||
color = tempColor;
|
||||
} else {
|
||||
style = tempColor;
|
||||
}
|
||||
}
|
||||
i++; // skip color char
|
||||
} else {
|
||||
text += chars[i];
|
||||
|
Loading…
Reference in New Issue
Block a user