Skip to content
Snippets Groups Projects
Commit 4ee09a27 authored by paramat's avatar paramat Committed by Milan
Browse files

merge upstream commit: Stairs: Stair recipe returns 8 stairs not 6

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