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 // Common setup
SideProxy() { SideProxy() {
Registration.register();
Config.init(); Config.init();
Registration.register();
Network.init(); Network.init();
IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus();