forked from thunderdog1138/star_wars
Stairs: Stair recipe returns 8 stairs not 6
Make it consistent with the slab recipe which conserves volume
This commit is contained in:
parent
e77ef553ff
commit
5809c28ae3
|
@ -89,7 +89,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
|
|||
|
||||
if recipeitem then
|
||||
minetest.register_craft({
|
||||
output = 'stairs:stair_' .. subname .. ' 6',
|
||||
output = 'stairs:stair_' .. subname .. ' 8',
|
||||
recipe = {
|
||||
{recipeitem, "", ""},
|
||||
{recipeitem, recipeitem, ""},
|
||||
|
@ -99,7 +99,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
|
|||
|
||||
-- Flipped recipe for the silly minecrafters
|
||||
minetest.register_craft({
|
||||
output = 'stairs:stair_' .. subname .. ' 6',
|
||||
output = 'stairs:stair_' .. subname .. ' 8',
|
||||
recipe = {
|
||||
{"", "", recipeitem},
|
||||
{"", recipeitem, recipeitem},
|
||||
|
|
Loading…
Reference in New Issue