Small fixes

This commit is contained in:
paulevsGitch 2021-01-11 14:01:37 +03:00
parent cdfb3db515
commit f4480bcb39
6 changed files with 21 additions and 12 deletions

View file

@ -35,6 +35,7 @@ public class EndLeavesBlock extends LeavesBlock implements BlockPatterned, IRend
.suffocates((state, world, pos) -> { return false; })
.blockVision((state, world, pos) -> { return false; })
.materialColor(color)
.breakByTool(FabricToolTags.HOES)
.breakByTool(FabricToolTags.SHEARS));
this.sapling = sapling;
}
@ -46,6 +47,7 @@ public class EndLeavesBlock extends LeavesBlock implements BlockPatterned, IRend
.blockVision((state, world, pos) -> { return false; })
.materialColor(color)
.luminance(light)
.breakByTool(FabricToolTags.HOES)
.breakByTool(FabricToolTags.SHEARS));
this.sapling = sapling;
}