Advertisement
Guest User

Untitled

a guest
Nov 5th, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. public void registerSubstitutedBlocks(FMLInitializationEvent event)
  2.     {
  3.         try
  4.         {
  5.             GameRegistry.addSubstitutionAlias("minecraft:snow", GameRegistry.Type.BLOCK, snowBlock);
  6.             GameRegistry.addSubstitutionAlias("minecraft:ice", GameRegistry.Type.BLOCK, iceBlock);
  7.         }
  8.         catch (ExistingSubstitutionException e)
  9.         {
  10.             e.printStackTrace();
  11.         }
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement