(FMLPreInitializationEvent evt)
| 42 | public static BCLib INSTANCE; |
| 43 | |
| 44 | @Mod.EventHandler |
| 45 | public static void preInit(FMLPreInitializationEvent evt) { |
| 46 | BuildcraftRecipeRegistry.assemblyRecipes = AssemblyRecipeRegistry.INSTANCE; |
| 47 | BuildcraftRecipeRegistry.integrationRecipes = IntegrationRecipeRegistry.INSTANCE; |
| 48 | |
| 49 | BCModules.fmlPreInit(); |
| 50 | BuildCraftAPI.fakePlayerProvider = FakePlayerUtil.INSTANCE; |
| 51 | BCLibProxy.getProxy().fmlPreInit(); |
| 52 | |
| 53 | BCLibItems.preInit(); |
| 54 | |
| 55 | BCMessageHandler.fmlPreInit(); |
| 56 | NetworkRegistry.INSTANCE.registerGuiHandler(INSTANCE, BCLibProxy.getProxy()); |
| 57 | |
| 58 | MinecraftForge.EVENT_BUS.register(BCLibEventDist.INSTANCE); |
| 59 | } |
| 60 | |
| 61 | @Mod.EventHandler |
| 62 | public static void init(FMLInitializationEvent evt) { |
nothing calls this directly
no test coverage detected