13
0
geforkt von Mirrors/Velocity
Dieser Commit ist enthalten in:
Leymooo 2018-08-25 18:02:19 +03:00
Ursprung 1b4c537c81
Commit 09153ae620
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -4,7 +4,7 @@ import java.util.Locale;
public interface PlayerSettings {
Locale getLocate();
Locale getLocale();
byte getViewDistance();

Datei anzeigen

@ -19,7 +19,7 @@ public class ClientSettingsWrapper implements PlayerSettings {
}
@Override
public Locale getLocate() {
public Locale getLocale() {
return locale == null ? locale = Locale.forLanguageTag(settings.getLocale().replaceAll("_", "-")) : locale; //Will throw error if locale not found
}