Fixed some config constructors

This commit is contained in:
Auxilor
2022-03-28 14:23:27 +01:00
parent 8b70a37459
commit e06623d3fe
2 changed files with 3 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ public abstract class ExtendableConfig extends LoadableConfigWrapper {
source,
removeUnused,
type,
true,
updateBlacklist
));
}

View File

@@ -26,7 +26,8 @@ public abstract class StaticBaseConfig extends LoadableConfigWrapper {
plugin,
"",
plugin.getClass(),
type
type,
true
));
}
}