Skip to content
Snippets Groups Projects
Commit 664b45ac authored by Jonathon Station's avatar Jonathon Station Committed by BlockMen
Browse files

Adjust stair output amount

Stair recipe now outputs six stairs rather than four.
parent b3f4f406
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
})
minetest.register_craft({
output = 'stairs:stair_' .. subname .. ' 4',
output = 'stairs:stair_' .. subname .. ' 6',
recipe = {
{recipeitem, "", ""},
{recipeitem, recipeitem, ""},
......@@ -70,7 +70,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
-- Flipped recipe for the silly minecrafters
minetest.register_craft({
output = 'stairs:stair_' .. subname .. ' 4',
output = 'stairs:stair_' .. subname .. ' 6',
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