3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-31 03:18:03 +02:00

Better flexibility with number loading

Dieser Commit ist enthalten in:
Myles 2016-11-14 18:29:45 +00:00
Ursprung 689f0fd5db
Commit eb78fe4bfc

Datei anzeigen

@ -145,7 +145,11 @@ public abstract class Config implements ConfigurationProvider {
public int getInt(String key, int def) {
if (this.config.containsKey(key)) {
return (int) this.config.get(key);
if (this.config.get(key) instanceof Number) {
return ((Number) this.config.get(key)).intValue();
} else {
return def;
}
} else {
return def;
}
@ -153,7 +157,11 @@ public abstract class Config implements ConfigurationProvider {
public double getDouble(String key, double def) {
if (this.config.containsKey(key)) {
return (double) this.config.get(key);
if (this.config.get(key) instanceof Number) {
return ((Number) this.config.get(key)).doubleValue();
} else {
return def;
}
} else {
return def;
}