Add config migration feature
This commit is contained in:
parent
5aeef212dc
commit
25fdec31b1
16 changed files with 252 additions and 151 deletions
|
|
@ -75,6 +75,11 @@ public class BungeeYamlConfig implements ServerUtilsConfig {
|
|||
return config.getBoolean(path);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getInt(String path) {
|
||||
return config.getInt(path, -1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Collection<? extends String> getKeys() {
|
||||
return config.getKeys();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue