Skip to content
Snippets Groups Projects
Commit b91e0478 authored by Wuzzy's avatar Wuzzy Committed by paramat
Browse files

Stairs: Allow crafting slabs and stairs into full blocks again

parent 7e9c5a35
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,15 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
},
})
-- Use stairs to craft full blocks again (1:1)
minetest.register_craft({
output = recipeitem .. ' 3',
recipe = {
{'stairs:stair_' .. subname, 'stairs:stair_' .. subname},
{'stairs:stair_' .. subname, 'stairs:stair_' .. subname},
},
})
-- Fuel
local baseburntime = minetest.get_craft_result({
method = "fuel",
......@@ -216,6 +225,15 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
},
})
-- Use 2 slabs to craft a full block again (1:1)
minetest.register_craft({
output = recipeitem,
recipe = {
{'stairs:slab_' .. subname},
{'stairs:slab_' .. subname},
},
})
-- Fuel
local baseburntime = minetest.get_craft_result({
method = "fuel",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment