Tube worms, floating block fixes

This commit is contained in:
paulevsGitch 2020-12-06 05:21:35 +03:00
parent 08e31b8743
commit e3769bb20b
17 changed files with 413 additions and 9 deletions

View file

@ -37,7 +37,11 @@ public class BlockWallPlant extends BlockPlant {
public static final DirectionProperty FACING = HorizontalFacingBlock.FACING;
public BlockWallPlant() {
this(0);
this(FabricBlockSettings.of(Material.PLANT)
.breakByTool(FabricToolTags.SHEARS)
.sounds(BlockSoundGroup.GRASS)
.breakByHand(true)
.noCollision());
}
public BlockWallPlant(int light) {