[stairs & stairplus] Fix inconsistences and #487

This commit is contained in:
LeMagnesium 2016-07-11 18:11:52 +02:00
parent 202a96fae2
commit 64b6a872d0
2 changed files with 4 additions and 4 deletions

View File

@ -339,14 +339,14 @@ stairs.register_stair_and_slab("desert_stonebrick", "default:desert_stonebrick",
default.node_sound_stone_defaults())
stairs.register_stair_and_slab("sandstone", "default:sandstone",
{crumbly = 2, cracky = 2},
{crumbly = 1, cracky = 3},
{"default_sandstone.png"},
"Sandstone Stair",
"Sandstone Slab",
default.node_sound_stone_defaults())
stairs.register_stair_and_slab("sandstonebrick", "default:sandstonebrick",
{crumbly = 2, cracky = 2},
{cracky = 2},
{"default_sandstone_brick.png"},
"Sandstone Brick Stair",
"Sandstone Brick Slab",

View File

@ -126,7 +126,7 @@ function stairsplus:register_stair(modname, subname, recipeitem, fields)
-- Some saw-less recipes:
minetest.register_craft({
output = modname .. ":stair_" .. subname .. " 8",
output = modname .. ":stair_" .. subname .. " 6",
recipe = {
{recipeitem, "", ""},
{recipeitem, recipeitem, ""},
@ -135,7 +135,7 @@ function stairsplus:register_stair(modname, subname, recipeitem, fields)
})
minetest.register_craft({
output = modname .. ":stair_" .. subname .. " 8",
output = modname .. ":stair_" .. subname .. " 6",
recipe = {
{"", "", recipeitem},
{"", recipeitem, recipeitem},