Guest User

Untitled

a guest
May 13th, 2015
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1.     @EventHandler
  2.     public void preInit(FMLPreInitializationEvent event) {
  3.    
  4.         fireTweak = new fireTweak();
  5.         itemFireEdit = new itemFireTweak(fireTweak);
  6.        
  7.        
  8.     }
  9.  
  10.     @EventHandler
  11.     public void Init(FMLInitializationEvent event) {       
  12.         try {
  13.             GameRegistry.addSubstitutionAlias("minecraft:fire", GameRegistry.Type.BLOCK, fireTweak);
  14.             GameRegistry.addSubstitutionAlias("minecraft:fire", GameRegistry.Type.ITEM, itemFireEdit);
  15.         } catch (ExistingSubstitutionException e) {
  16.             e.printStackTrace();
  17.         }
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment