()
| 33 | public static final PropertyBool[] ALL_FACES = new PropertyBool[] {UP, NORTH, SOUTH, WEST, EAST}; |
| 34 | |
| 35 | public BlockVine() |
| 36 | { |
| 37 | super(Material.vine); |
| 38 | this.setDefaultState(this.blockState.getBaseState().withProperty(UP, Boolean.FALSE).withProperty(NORTH, Boolean.FALSE).withProperty(EAST, Boolean.FALSE).withProperty(SOUTH, Boolean.FALSE).withProperty(WEST, Boolean.FALSE)); |
| 39 | this.setTickRandomly(true); |
| 40 | this.setCreativeTab(CreativeTabs.tabDecorations); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * 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