Added new recipe for getting 4 strings from any wool block

It would make mods such as Animalia or any bow/xbow mod integrate much more naturally to MTG, as cotton is sometimes very hard to find or impossible depending on the biome.

Also this recipe makes a lot of sense IMO.
This commit is contained in:
Maurus 2024-06-22 23:45:21 -03:00 committed by GitHub
parent f03c992864
commit 4d046db488
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,6 +23,12 @@ for i = 1, #dyes do
type = "shapeless", type = "shapeless",
output = "wool:" .. name, output = "wool:" .. name,
recipe = {"group:dye," .. color_group, "group:wool"}, recipe = {"group:dye," .. color_group, "group:wool"},
minetest.register_craft{
type = "shapeless",
output = "farming:string 4",
recipe = {"group:wool"}
}
} }
end end