commit
7d3c4d6e33
@ -65,11 +65,15 @@ public class TextUtil {
|
|||||||
text = "";
|
text = "";
|
||||||
}
|
}
|
||||||
ChatColor tempColor = ChatColor.getByChar(chars[i + 1]);
|
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;
|
color = tempColor;
|
||||||
} else {
|
} else {
|
||||||
style = tempColor;
|
style = tempColor;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
i++; // skip color char
|
i++; // skip color char
|
||||||
} else {
|
} else {
|
||||||
text += chars[i];
|
text += chars[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user