1
0
mirror of https://github.com/amalthea-mc/ShopChest.git synced 2025-03-11 23:44:10 +00:00

Prevent characters in translations from being escaped

This commit is contained in:
Eric 2017-04-10 20:03:20 +02:00
parent fd9c6beea4
commit 8140db76c5

@ -86,7 +86,7 @@ public class LanguageConfiguration extends FileConfiguration {
sbValue.append(line.split("=")[i]);
}
String value = Matcher.quoteReplacement(sbValue.toString());
String value = sbValue.toString();
values.put(key, value);
}