diff --git a/src/main/java/org/betterx/bclib/blocks/SimpleLeavesBlock.java b/src/main/java/org/betterx/bclib/blocks/SimpleLeavesBlock.java index 22dc9638..7af15c4f 100644 --- a/src/main/java/org/betterx/bclib/blocks/SimpleLeavesBlock.java +++ b/src/main/java/org/betterx/bclib/blocks/SimpleLeavesBlock.java @@ -13,7 +13,7 @@ public class SimpleLeavesBlock extends BaseBlockNotFull implements RenderLayerPr public SimpleLeavesBlock(MapColor color) { this( BehaviourBuilders - .createLeaves(color, true) + .createStaticLeaves(color, true) .sound(SoundType.GRASS) ); } @@ -21,7 +21,7 @@ public class SimpleLeavesBlock extends BaseBlockNotFull implements RenderLayerPr public SimpleLeavesBlock(MapColor color, int light) { this( BehaviourBuilders - .createLeaves(color, true) + .createStaticLeaves(color, true) .lightLevel(ignored -> light) .sound(SoundType.GRASS) );