Biome features rebalance

This commit is contained in:
paulevsGitch 2020-11-04 18:20:59 +03:00
parent a9174260be
commit c3a7a59d78
8 changed files with 11 additions and 12 deletions

View file

@ -14,16 +14,13 @@ import net.minecraft.sound.BlockSoundGroup;
public class BlockWallMushroom extends BlockWallPlant {
public BlockWallMushroom(int light) {
super(FabricBlockSettings.of(Material.WOOD)
super(FabricBlockSettings.of(Material.PLANT)
.breakByTool(FabricToolTags.AXES)
.sounds(BlockSoundGroup.GRASS)
.luminance(light)
.sounds(BlockSoundGroup.WOOD)
.hardness(0.2F)
.breakByHand(true)
.allowsSpawning((state, world, pos, type) -> { return false; })
.suffocates((state, world, pos) -> { return false; })
.blockVision((state, world, pos) -> { return false; })
.noCollision());
}