Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public class mod_Stairs extends BaseMod
  4. {
  5.     public static final Block stairsStone;
  6.     static {
  7.         stairsStone = (new BlockStairs(1700, stone));
  8.     }
  9.        
  10.     ModLoader.AddRecipe(new ItemStack(Block.stairsStone, 1), new Object[] {"#  ", "## ", "###", Character.valueOf('#'), Block.stone});
  11.     ModLoader.RegisterBlock(stairsStone);
  12.     ModLoader.AddName(stairsStone, "Stone Stairs");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement