Fixed ja/zh unicode nonsense

This commit is contained in:
Anuken
2021-11-22 12:13:14 -05:00
parent cec39f8a70
commit a0ba464de1
4 changed files with 657 additions and 657 deletions

View File

@@ -292,7 +292,7 @@ task updateBundles{
continue;
}
if(ch >= 0xE000){
if(ch >= 0xE000 && ch <= 0xF8FF){
String hex = Integer.toHexString((int)ch);
outBuffer.append("\\u");
for(int j = 0; j < 4 - hex.length(); j++){