forked from GeyserMC/Geyser
Don't cause a recursion error if Geyser can't find the locale
This commit is contained in:
parent
6cdf1eaf43
commit
ca4d827d28
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ public class LanguageUtils {
|
||||||
// Insert the locale into the mappings
|
// Insert the locale into the mappings
|
||||||
LOCALE_MAPPINGS.put(locale, localeProp);
|
LOCALE_MAPPINGS.put(locale, localeProp);
|
||||||
} else {
|
} else {
|
||||||
if (!locale.toLowerCase().equals(getDefaultLocale().toLowerCase())) { // The default locale was invalid fallback to en_us
|
if (GeyserConnector.getInstance() != null && GeyserConnector.getInstance().getLogger() != null) {
|
||||||
GeyserConnector.getInstance().getLogger().warning(getLocaleStringLog("geyser.language.missing_file", locale));
|
GeyserConnector.getInstance().getLogger().warning("Missing locale: " + locale);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue