()
| 21 | public static final PropertyBool SNOWY = PropertyBool.create("snowy"); |
| 22 | |
| 23 | protected BlockGrass() |
| 24 | { |
| 25 | super(Material.grass); |
| 26 | this.setDefaultState(this.blockState.getBaseState().withProperty(SNOWY, Boolean.FALSE)); |
| 27 | this.setTickRandomly(true); |
| 28 | this.setCreativeTab(CreativeTabs.tabBlock); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * 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