3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-03 20:08:08 +02:00

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

Dieser Commit ist enthalten in:
DoctorMacc 2020-07-05 21:13:28 -04:00
Ursprung 6cdf1eaf43
Commit ca4d827d28

Datei anzeigen

@ -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);
}
}
}