forked from nalc/nalc_game
Remove extra empty strings in craft recipes (#2281)
This commit is contained in:
committed by
SmallJoker
parent
6688ddf6d4
commit
ccf03ea404
@ -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
|
||||
|
Reference in New Issue
Block a user