Fixed legacy configs not having 100% parity

This commit is contained in:
Auxilor
2021-12-13 12:56:22 +00:00
parent 8e96329fdc
commit ca6b3185a3
4 changed files with 8 additions and 4 deletions

View File

@@ -37,7 +37,8 @@ public abstract class JSONBaseConfig extends LoadableJSONConfigWrapper {
"",
plugin.getClass(),
removeUnused,
ConfigType.JSON
ConfigType.JSON,
updateBlacklist
)
);
}

View File

@@ -45,7 +45,8 @@ public abstract class JSONExtendableConfig extends LoadableJSONConfigWrapper {
subDirectoryPath,
source,
removeUnused,
ConfigType.JSON
ConfigType.JSON,
updateBlacklist
)
);
}

View File

@@ -35,7 +35,8 @@ public abstract class YamlBaseConfig extends LoadableYamlConfigWrapper {
"",
plugin.getClass(),
removeUnused,
ConfigType.YAML
ConfigType.YAML,
updateBlacklist
)
);
}

View File

@@ -43,7 +43,8 @@ public abstract class YamlExtendableConfig extends LoadableYamlConfigWrapper {
subDirectoryPath,
source,
removeUnused,
ConfigType.YAML
ConfigType.YAML,
updateBlacklist
)
);
}