Fixed stripColor taking more than it should, thanks to fieldmaster for catching it

This commit is contained in:
Nathan Adams
2011-10-26 07:01:50 +01:00
parent 8c07d9148d
commit 96b0a48cd7

View File

@@ -115,7 +115,7 @@ public enum ChatColor {
return null;
}
return input.replaceAll("(?i)\u00A7[0-F]", "");
return input.replaceAll("(?i)\u00A7[0-9A-F]", "");
}
static {