diff --git a/src/scripts/crafttweaker/integrations/wood.zs b/src/scripts/crafttweaker/integrations/wood.zs index bf09ad506..9d327e3c8 100644 --- a/src/scripts/crafttweaker/integrations/wood.zs +++ b/src/scripts/crafttweaker/integrations/wood.zs @@ -208,4 +208,11 @@ function init() { for log in logsToRemove { mekanism.removeSawmill(log); } + + // Better stick recipes. (Lower tech recipe to use slabs to convert to sticks before players unlock higher tech) + for slab in .items { + Saw.builder() + .buildRecipe(slab, [ * 4]) + .build(); + } }