Adjust stair output amount
authorJonathon Station <jyoumans@pugetsound.edu>
Tue, 21 Jan 2014 09:49:32 +0000 (01:49 -0800)
committerBlockMen <nmuelll@web.de>
Sat, 5 Jul 2014 13:56:23 +0000 (15:56 +0200)
Stair recipe now outputs six stairs rather than four.

mods/stairs/init.lua

index 179cf15d93708aa92fef539e631e3bec8f8c378e..f27fca3bd4a843e7fc471e4f4b1e46c99f83462b 100644 (file)
@@ -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},