9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-23 08:39:19 +00:00

fix: don't escape double underscores in text

This commit is contained in:
William
2024-04-07 12:45:31 +01:00
parent b0e585841c
commit 5456b232f0

View File

@@ -152,7 +152,7 @@ public class Locales {
value.append(c);
}
return value.toString().replace("__", "_\\_");
return value.toString();
}
/**