forked from thunderdog1138/star_wars
Stairs: Allow crafting slabs and stairs into full blocks again
This commit is contained in:
parent
7e9c5a3576
commit
b91e047868
|
@ -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
|
-- Fuel
|
||||||
local baseburntime = minetest.get_craft_result({
|
local baseburntime = minetest.get_craft_result({
|
||||||
method = "fuel",
|
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
|
-- Fuel
|
||||||
local baseburntime = minetest.get_craft_result({
|
local baseburntime = minetest.get_craft_result({
|
||||||
method = "fuel",
|
method = "fuel",
|
||||||
|
|
Loading…
Reference in New Issue