(FMLInitializationEvent evt)
| 77 | } |
| 78 | |
| 79 | @Mod.EventHandler |
| 80 | public static void init(FMLInitializationEvent evt) { |
| 81 | BCCoreProxy.getProxy().fmlInit(); |
| 82 | |
| 83 | BCCoreRecipes.init(); |
| 84 | BCAchievements.init(); |
| 85 | |
| 86 | MarkerCache.registerCache(VolumeCache.INSTANCE); |
| 87 | MarkerCache.registerCache(PathCache.INSTANCE); |
| 88 | } |
| 89 | |
| 90 | @Mod.EventHandler |
| 91 | public static void postInit(FMLPostInitializationEvent evt) { |
nothing calls this directly
no test coverage detected