mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-07 06:06:10 -04:00
Remove extra empty strings in craft recipes (#2281)
This commit is contained in:
parent
6688ddf6d4
commit
ccf03ea404
3 changed files with 11 additions and 13 deletions
|
@ -337,8 +337,8 @@ function stairs.register_stair_inner(subname, recipeitem, groups, images,
|
|||
minetest.register_craft({
|
||||
output = 'stairs:stair_inner_' .. subname .. ' 7',
|
||||
recipe = {
|
||||
{ "", recipeitem, ""},
|
||||
{ recipeitem, "", recipeitem},
|
||||
{"", recipeitem, ""},
|
||||
{recipeitem, "", recipeitem},
|
||||
{recipeitem, recipeitem, recipeitem},
|
||||
},
|
||||
})
|
||||
|
@ -417,8 +417,7 @@ function stairs.register_stair_outer(subname, recipeitem, groups, images,
|
|||
minetest.register_craft({
|
||||
output = 'stairs:stair_outer_' .. subname .. ' 6',
|
||||
recipe = {
|
||||
{ "", "", ""},
|
||||
{ "", recipeitem, ""},
|
||||
{"", recipeitem, ""},
|
||||
{recipeitem, recipeitem, recipeitem},
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue