()
| 15 | public static final PropertyEnum<BlockLog.EnumAxis> LOG_AXIS = PropertyEnum.<BlockLog.EnumAxis>create("axis", BlockLog.EnumAxis.class); |
| 16 | |
| 17 | public BlockLog() |
| 18 | { |
| 19 | super(Material.wood); |
| 20 | this.setCreativeTab(CreativeTabs.tabBlock); |
| 21 | this.setHardness(2.0F); |
| 22 | this.setStepSound(soundTypeWood); |
| 23 | } |
| 24 | |
| 25 | public void breakBlock(World worldIn, BlockPos pos, IBlockState state) |
| 26 | { |
nothing calls this directly
no test coverage detected