mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-10 09:02:09 -07:00
Fixed stripColor taking more than it should, thanks to fieldmaster for catching it
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user