diff --git a/src/scripts/crafttweaker/integrations/wood.zs b/src/scripts/crafttweaker/integrations/wood.zs index 9d327e3c8..7825c551a 100644 --- a/src/scripts/crafttweaker/integrations/wood.zs +++ b/src/scripts/crafttweaker/integrations/wood.zs @@ -10,6 +10,7 @@ import crafttweaker.item.IIngredient; import crafttweaker.item.IItemStack; +import mods.betterwithmods.Kiln; import mods.betterwithmods.Saw; import mods.primaltech.WaterSaw; @@ -197,6 +198,10 @@ function init() { .buildRecipe(log, [plank * 6, .firstItem * 2]) .setInputBlockDrop(logItem as IItemStack) .build(); + Kiln.builder() + .buildRecipe(log, []) + .setHeat(2) + .build(); // Mekanism mekanism.addSawmill(logItem, plank * 6, .firstItem * 2, 0.25);