From: paramat Date: Wed, 22 Jun 2016 00:41:26 +0000 (+0100) Subject: Stairs: Stair recipe returns 8 stairs not 6 X-Git-Tag: 0.4.15~170 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5809c28ae37f0e7e54801d6a2ac37bbf66e2f6f7;p=oweals%2Fminetest_game.git Stairs: Stair recipe returns 8 stairs not 6 Make it consistent with the slab recipe which conserves volume --- diff --git a/mods/stairs/init.lua b/mods/stairs/init.lua index 2195e4d4..8a4ebdad 100644 --- a/mods/stairs/init.lua +++ b/mods/stairs/init.lua @@ -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},