Biome features rebalance
This commit is contained in:
parent
a9174260be
commit
c3a7a59d78
8 changed files with 11 additions and 12 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue