mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-29 03:21:25 +01:00
Fixed possible error if a setting was empty on bungee config.yml
This commit is contained in:
parent
3cb1955928
commit
385e161d37
@ -86,8 +86,8 @@ public class NetworkSettings {
|
||||
String[] settings = configSettings.split(SPLIT);
|
||||
UUID thisServerUUID = ServerInfo.getServerUUID();
|
||||
for (String settingAndVal : settings) {
|
||||
String[] split = settingAndVal.split(VAL_SPLIT);
|
||||
String setting = split[0];
|
||||
String[] settingValSplit = settingAndVal.split(VAL_SPLIT);
|
||||
String setting = settingValSplit[0];
|
||||
String[] pathSplit = setting.split(":");
|
||||
String path;
|
||||
if (pathSplit.length == 2) {
|
||||
@ -100,7 +100,7 @@ public class NetworkSettings {
|
||||
path = setting;
|
||||
}
|
||||
|
||||
String value = split[1];
|
||||
String value = settingValSplit.length == 2 ? settingValSplit[1] : "";
|
||||
pathValueMap.put(path, value);
|
||||
}
|
||||
return pathValueMap;
|
||||
|
Loading…
Reference in New Issue
Block a user