Moved config initialization before registration.

This commit is contained in:
2022-01-09 19:26:07 +00:00
parent 50474bf894
commit 635d69a7ca

View File

@ -21,8 +21,8 @@ class SideProxy implements ISideProxy {
// Common setup
SideProxy() {
Registration.register();
Config.init();
Registration.register();
Network.init();
IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus();