Fix leave finding in saws so compatibility with other mods works

This commit is contained in:
grimmauld 2021-03-11 20:31:23 +01:00
parent 2a8c3debeb
commit f115233197

View file

@ -208,7 +208,7 @@ public class TreeCutter {
} }
private static boolean isLeaf(BlockState state) { private static boolean isLeaf(BlockState state) {
return state.has(LeavesBlock.DISTANCE); return state.has(LeavesBlock.DISTANCE) || state.isIn(BlockTags.LEAVES);
} }
} }