Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Stairs: Allow crafting slabs and stairs into full blocks again
- Loading branch information
Showing
with
18 additions
and
0 deletions.
-
+18
−0
mods/stairs/init.lua
|
@@ -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", |
|
|