Advertisement
jayhillx

[Advanced Combat] DataEvents

Dec 19th, 2021
1,413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. @Mod.EventBusSubscriber(modid = AdvancedCombat.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD)
  2. public class DataEvents {
  3.  
  4.     @SubscribeEvent
  5.     public void onGatherData(GatherDataEvent event) {
  6.         DataGenerator generator = event.getGenerator();
  7.  
  8.         generator.addProvider(new ACRecipeManager(generator));
  9.     }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement