(Block crop)
| 32 | private final Block crop; |
| 33 | |
| 34 | protected BlockStem(Block crop) |
| 35 | { |
| 36 | this.setDefaultState(this.blockState.getBaseState().withProperty(AGE, 0).withProperty(FACING, EnumFacing.UP)); |
| 37 | this.crop = crop; |
| 38 | this.setTickRandomly(true); |
| 39 | float f = 0.125F; |
| 40 | this.setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, 0.25F, 0.5F + f); |
| 41 | this.setCreativeTab(null); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Get the actual Block state of this Block at the given position. This applies properties not visible in the |
nothing calls this directly
no test coverage detected