mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
Bugfix 204 -- adjusted cobblestone to stair ratio
Stair recipe now outputs six stairs rather than four.
This commit is contained in:
parent
04e560328f
commit
760820f690
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'stairs:stair_' .. subname .. ' 4',
|
output = 'stairs:stair_' .. subname .. ' 6',
|
||||||
recipe = {
|
recipe = {
|
||||||
{recipeitem, "", ""},
|
{recipeitem, "", ""},
|
||||||
{recipeitem, recipeitem, ""},
|
{recipeitem, recipeitem, ""},
|
||||||
|
@ -70,7 +70,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
|
||||||
|
|
||||||
-- Flipped recipe for the silly minecrafters
|
-- Flipped recipe for the silly minecrafters
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'stairs:stair_' .. subname .. ' 4',
|
output = 'stairs:stair_' .. subname .. ' 6',
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", recipeitem},
|
{"", "", recipeitem},
|
||||||
{"", recipeitem, recipeitem},
|
{"", recipeitem, recipeitem},
|
||||||
|
|
Loading…
Add table
Reference in a new issue