mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 07:06:45 +01:00
Don't complain about missing Guide strings
This commit is contained in:
parent
7b3fb46a9a
commit
14175a6dfd
@ -41,7 +41,10 @@ public final class LocaleLoader {
|
|||||||
return getString(key, enBundle, messageArguments);
|
return getString(key, enBundle, messageArguments);
|
||||||
}
|
}
|
||||||
catch (MissingResourceException ex2) {
|
catch (MissingResourceException ex2) {
|
||||||
mcMMO.p.getLogger().warning("Could not find locale string: " + key);
|
if (!key.contains("Guides")) {
|
||||||
|
mcMMO.p.getLogger().warning("Could not find locale string: " + key);
|
||||||
|
}
|
||||||
|
|
||||||
return '!' + key + '!';
|
return '!' + key + '!';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user