mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-03 01:19:42 +01:00
Hopefully fixed WorldConfiguration.getKeys
This commit is contained in:
parent
67f78ae8b5
commit
1d47d12189
@ -257,12 +257,11 @@ private List<String> getKeys(String node) {
|
|||||||
List<String> res = parentConfig.getKeys(node);
|
List<String> res = parentConfig.getKeys(node);
|
||||||
|
|
||||||
if (res == null || res.size() == 0) {
|
if (res == null || res.size() == 0) {
|
||||||
parentConfig.setProperty(node, new ArrayList<String>());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (config.getProperty(node) != null) {
|
|
||||||
res = config.getKeys(node);
|
res = config.getKeys(node);
|
||||||
}
|
}
|
||||||
|
if (res == null) {
|
||||||
|
res = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user