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
|
@ -106,9 +106,9 @@ farming.register_hoe = function(name, def)
|
|||
minetest.register_craft({
|
||||
output = name:sub(2),
|
||||
recipe = {
|
||||
{def.material, def.material, ""},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""}
|
||||
{def.material, def.material},
|
||||
{"", "group:stick"},
|
||||
{"", "group:stick"}
|
||||
}
|
||||
})
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue