Don't cause a recursion error if Geyser can't find the locale

This commit is contained in:
DoctorMacc 2020-07-05 21:13:28 -04:00
parent 6cdf1eaf43
commit ca4d827d28
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ public class LanguageUtils {
// Insert the locale into the mappings
LOCALE_MAPPINGS.put(locale, localeProp);
} else {
if (!locale.toLowerCase().equals(getDefaultLocale().toLowerCase())) { // The default locale was invalid fallback to en_us
GeyserConnector.getInstance().getLogger().warning(getLocaleStringLog("geyser.language.missing_file", locale));
if (GeyserConnector.getInstance() != null && GeyserConnector.getInstance().getLogger() != null) {
GeyserConnector.getInstance().getLogger().warning("Missing locale: " + locale);
}
}
}