mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-08-02 12:35:27 +02:00
Unlimited custom xp perks Part 1
This commit is contained in:
@@ -57,19 +57,18 @@ public final class LocaleLoader {
|
||||
if (filesystemBundle != null) {
|
||||
try {
|
||||
return filesystemBundle.getString(key);
|
||||
} catch (MissingResourceException ignored) {
|
||||
}
|
||||
catch (MissingResourceException ignored) {}
|
||||
}
|
||||
|
||||
try {
|
||||
return bundle.getString(key);
|
||||
} catch (MissingResourceException ignored) {
|
||||
}
|
||||
catch (MissingResourceException ignored) {}
|
||||
|
||||
try {
|
||||
return enBundle.getString(key);
|
||||
}
|
||||
catch (MissingResourceException ignored) {
|
||||
} catch (MissingResourceException ignored) {
|
||||
if (!key.contains("Guides")) {
|
||||
mcMMO.p.getLogger().warning("Could not find locale string: " + key);
|
||||
}
|
||||
|
Reference in New Issue
Block a user