Fixed an index out of range error in ChatColor.getLastColors

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2012-03-22 23:09:10 +00:00
parent fbea4ba372
commit fa4dc7b265

View file

@ -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);