Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Stairs: Stair recipe returns 8 stairs not 6
Make it consistent with the slab recipe which conserves volume
  • Loading branch information
paramat committed Jun 22, 2016
1 parent e77ef55 commit 5809c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/stairs/init.lua
Expand Up @@ -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, ""},
Expand All @@ -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},
Expand Down

0 comments on commit 5809c28

Please sign in to comment.