TreemanKing 2023-11-22 17:28:46 +11:00
parent 394b238958
commit bed538ffbb
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class Lang {
if (instance.languageMap.containsKey(s)) {
String translation = instance.languageMap.get(s);
// noinspection ALL (not sure what the specific warning is for escaped unicode)
translation = translation.replaceAll("&([0-9a-frk-o])", "\u00A7$1");
translation = translation.replaceAll("&([0-9a-frk-ox])", "\u00A7$1");
return translation;
} else {
return s;