You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plugin.getLogger().warning("Unable to get language code, fallback to en_us, please change game-language option in config.yml.");
186
+
//plugin.getLogger().warning("Unable to get language code, fallback to en_us, please change game-language option in config.yml.");
182
187
languageCode = "en_us";
183
188
} else {
184
189
if (isCountryEmpty || isLanguageEmpty) {
185
190
languageCode = isLanguageEmpty ? country + '_' + country : language + '_' + language;
186
191
if ("en_en".equals(languageCode)) {
187
192
languageCode = "en_us";
188
193
}
189
-
plugin.getLogger().warning("Unable to get language code, guessing " + languageCode + " instead, If it's incorrect, please change game-language option in config.yml.");
194
+
// plugin.getLogger().warning("Unable to get language code, guessing " + languageCode + " instead, If it's incorrect, please change game-language option in config.yml.");
0 commit comments