Skip to content

Commit

Permalink
plank it
Browse files Browse the repository at this point in the history
  • Loading branch information
wsor4035 committed Dec 1, 2024
1 parent 70df492 commit 93b098e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions technic/machines/register/grindings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ minetest.register_craftitem(sawdust, {
inventory_image = "technic_sawdust.png",
})
minetest.register_craft({ type = "fuel", recipe = sawdust, burntime = 6 })
technic.register_compressor_recipe({ input = {sawdust .. " 4"}, output = mat.wood })
technic.register_compressor_recipe({ input = {sawdust .. " 4"}, output = mat.apple_planks })

-- tree/wood grindings
local function register_tree_grinding(name, tree, wood, extract, grinding_color)
Expand Down Expand Up @@ -52,7 +52,7 @@ local default_extract = dye and "dye:brown 2"
local acacia_extract = dye and "dye:brown 8"

-- Specific recipes for acacia and rubber trees
register_tree_grinding("Acacia", mat.acacia_tree, mat.acacia_wood, acacia_extract)
register_tree_grinding("Acacia", mat.acacia_tree, mat.acacia_planks, acacia_extract)
register_tree_grinding("Rubber Tree", "moretrees:rubber_tree_trunk", rubber_planks, "technic:raw_latex 2")
register_tree_grinding("Rubber Tree", "moretrees:rubber_tree_trunk_empty", nil, "technic:raw_latex")

Expand Down

0 comments on commit 93b098e

Please sign in to comment.