mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-04-30 05:01:41 -04:00
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:
parent
f03c992864
commit
4d046db488
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue