Skip to content

Commit 7b66b44

Browse files
committed
load the config manager a bit later.
1 parent a46b982 commit 7b66b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/falsepattern/lib/internal/FalsePatternLib.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ public class FalsePatternLib extends DummyModContainer {
2323

2424
public FalsePatternLib() {
2525
super(MetadataCollection.from(ResourceUtil.getResourceFromJar("/mcmod.info", FalsePatternLib.class), Tags.MODID).getMetadataForId(Tags.MODID, null));
26-
ConfigurationManager.init();
2726
log.info("Version " + Tags.VERSION + " initialized!");
2827
}
2928

3029
@SuppressWarnings("UnstableApiUsage")
3130
@Override
3231
public boolean registerBus(EventBus bus, LoadController controller) {
32+
ConfigurationManager.init();
3333
return true;
3434
}
3535
}

0 commit comments

Comments
 (0)