Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class PetrifiedLog extends BlockRotatedPillar{
- public static Block block;
- public PetrifiedLog(){
- super(Material.rock);
- this.setDefaultState(this.blockState.getBaseState().withProperty(AXIS, EnumFacing.Axis.Y));
- this.setCreativeTab(CreativeTabs.tabBlock);
- this.setHardness(1.5f);
- this.setStepSound(SoundType.STONE);
- if (block == null){
- block = this;
- }
- }
- }
Add Comment
Please, Sign In to add comment