Skip to content
Snippets Groups Projects
Commit 5809c28a authored by paramat's avatar paramat
Browse files

Stairs: Stair recipe returns 8 stairs not 6

Make it consistent with the slab recipe which conserves volume
parent e77ef553
No related branches found
No related tags found
No related merge requests found
......@@ -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},
......
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