Remove extra empty strings in craft recipes (#2281)

This commit is contained in:
Paul Ouellette
2019-01-02 06:40:32 -05:00
committed by SmallJoker
parent 6688ddf6d4
commit ccf03ea404
3 changed files with 11 additions and 13 deletions

View File

@ -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