Fix using multiple hex codes in one message

This commit is contained in:
Esophose 2020-06-25 03:53:39 -06:00
parent 7a955ff853
commit 6844d147dd

View file

@ -272,6 +272,7 @@ public class LocaleManager extends Manager {
String before = parsed.substring(0, matcher.start());
String after = parsed.substring(matcher.end());
parsed = before + hexColor + after;
matcher = HEX_PATTERN.matcher(parsed);
}
}