don't add defaults if not asked

This commit is contained in:
destro174 2022-01-05 14:09:36 +01:00
parent be1b13e199
commit af23e0df29

View File

@ -53,7 +53,7 @@ public final class Config {
} }
try { try {
config = configLoader.load(ConfigurationOptions.defaults().header(HEADER)); config = configLoader.load(ConfigurationOptions.defaults().header(HEADER).shouldCopyDefaults(false));
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
} }