make the saw work

This commit is contained in:
grimmauld 2020-10-16 11:37:28 +02:00
parent c9e2f8b05e
commit 893294b9e4

View file

@ -10,6 +10,7 @@ import java.util.stream.Collectors;
import com.google.common.base.Predicate;
import com.simibubi.create.AllRecipeTypes;
import com.simibubi.create.AllTags;
import com.simibubi.create.content.contraptions.components.actors.BlockBreakingKineticTileEntity;
import com.simibubi.create.content.contraptions.processing.ProcessingInventory;
import com.simibubi.create.foundation.config.AllConfigs;
@ -366,7 +367,7 @@ public class SawTileEntity extends BlockBreakingKineticTileEntity {
}
public static boolean isSawable(BlockState stateToBreak) {
if (stateToBreak.isIn(BlockTags.LOGS) || stateToBreak.isIn(BlockTags.LEAVES))
if (stateToBreak.isIn(BlockTags.LOGS) || AllTags.AllBlockTags.SLIMY_LOGS.matches(stateToBreak) || stateToBreak.isIn(BlockTags.LEAVES))
return true;
Block block = stateToBreak.getBlock();
if (block instanceof BambooBlock)