(FMLCommonSetupEvent event)
| 39 | } |
| 40 | |
| 41 | public static void init(FMLCommonSetupEvent event) { |
| 42 | event.enqueueWork(() -> { |
| 43 | Ores.registerConfiguredFeatures(); |
| 44 | Dimensions.register(); |
| 45 | }); |
| 46 | Messages.register(); |
| 47 | } |
| 48 | |
| 49 | @SubscribeEvent |
| 50 | public static void onAttributeCreate(EntityAttributeCreationEvent event) { |
nothing calls this directly
no test coverage detected