Skip to content

Commit 5809c28

Browse files
committedJun 22, 2016
Stairs: Stair recipe returns 8 stairs not 6
Make it consistent with the slab recipe which conserves volume
1 parent e77ef55 commit 5809c28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎mods/stairs/init.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
8989

9090
if recipeitem then
9191
minetest.register_craft({
92-
output = 'stairs:stair_' .. subname .. ' 6',
92+
output = 'stairs:stair_' .. subname .. ' 8',
9393
recipe = {
9494
{recipeitem, "", ""},
9595
{recipeitem, recipeitem, ""},
@@ -99,7 +99,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
9999

100100
-- Flipped recipe for the silly minecrafters
101101
minetest.register_craft({
102-
output = 'stairs:stair_' .. subname .. ' 6',
102+
output = 'stairs:stair_' .. subname .. ' 8',
103103
recipe = {
104104
{"", "", recipeitem},
105105
{"", recipeitem, recipeitem},

0 commit comments

Comments
 (0)
Please sign in to comment.