Skip to content

Commit

Permalink
Stairs: Allow crafting slabs and stairs into full blocks again
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuzzy authored and paramat committed Jun 14, 2017
1 parent 7e9c5a3 commit b91e047
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions mods/stairs/init.lua
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit b91e047

Please sign in to comment.