()
| 21 | public static final PropertyInteger AGE = PropertyInteger.create("age", 0, 15); |
| 22 | |
| 23 | protected BlockReed() |
| 24 | { |
| 25 | super(Material.plants); |
| 26 | this.setDefaultState(this.blockState.getBaseState().withProperty(AGE, 0)); |
| 27 | float f = 0.375F; |
| 28 | this.setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, 1.0F, 0.5F + f); |
| 29 | this.setTickRandomly(true); |
| 30 | } |
| 31 | |
| 32 | public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand) |
| 33 | { |
nothing calls this directly
no test coverage detected