Advertisement
Gamebuster

PetrifiedLog.class

May 26th, 2016
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. public class PetrifiedLog extends BlockRotatedPillar{
  2.    
  3.     public PetrifiedLog(){
  4.         super(Material.rock);
  5.         this.setDefaultState(this.blockState.getBaseState().withProperty(AXIS, EnumFacing.Axis.Y));
  6.         this.setCreativeTab(CreativeTabs.tabBlock);
  7.         this.setHardness(1.5f);
  8.         this.setStepSound(SoundType.STONE);
  9.     }
  10.    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement