Fixed an index out of range error in ChatColor.getLastColors
This commit is contained in:
parent
97ba2ff938
commit
ce87b04aae
@ -222,7 +222,7 @@ public enum ChatColor {
|
||||
int length = input.length();
|
||||
|
||||
while ((lastIndex = input.indexOf(COLOR_CHAR, lastIndex + 1)) != -1) {
|
||||
if (lastIndex != length) {
|
||||
if (lastIndex < length - 1) {
|
||||
char c = input.charAt(lastIndex + 1);
|
||||
ChatColor col = getByChar(c);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user