From 5fa8a0b80883cefd2da6b9f9243d653efa2aaa2e Mon Sep 17 00:00:00 2001 From: grimmauld Date: Fri, 26 Mar 2021 09:11:25 +0100 Subject: [PATCH] Revert "Fix leave finding in saws so compatibility with other mods works" This is necessary to make the distance gathering work. Sorry me dumb dumb --- .../java/com/simibubi/create/foundation/utility/TreeCutter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/simibubi/create/foundation/utility/TreeCutter.java b/src/main/java/com/simibubi/create/foundation/utility/TreeCutter.java index 1432d99ff..32923920b 100644 --- a/src/main/java/com/simibubi/create/foundation/utility/TreeCutter.java +++ b/src/main/java/com/simibubi/create/foundation/utility/TreeCutter.java @@ -208,7 +208,7 @@ public class TreeCutter { } private static boolean isLeaf(BlockState state) { - return state.has(LeavesBlock.DISTANCE) || state.isIn(BlockTags.LEAVES); + return state.has(LeavesBlock.DISTANCE); } }