mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
Fixed an index out of range error in ChatColor.getLastColors
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
fbea4ba372
commit
fa4dc7b265
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue