@Mod.EventHandler public static void init(FMLInitializationEvent event) { LogHelper.debug("Starting Initialization"); Entities.init(); proxy.registerRenderers(); proxy.registerKeyBindings(); LogHelper.debug("Initialization Complete"); }
@Mod.EventHandler public static void preInit(FMLPreInitializationEvent event) { LogHelper.debug("Starting Pre-Initialization"); proxy.registerEventHandlers(); NetworkWrapperElemancy.init(); ConfigurationHandler.init(event); Blocks.init(); Items.init(); LogHelper.debug("Pre-Initialization Complete"); }