From 4d046db488e0287bec20f56776d32ed013aa2cde Mon Sep 17 00:00:00 2001 From: Maurus <138634584+Maurus8@users.noreply.github.com> Date: Sat, 22 Jun 2024 23:45:21 -0300 Subject: [PATCH] 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. --- mods/wool/init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mods/wool/init.lua b/mods/wool/init.lua index 87bd4274..2518b217 100644 --- a/mods/wool/init.lua +++ b/mods/wool/init.lua @@ -23,6 +23,12 @@ for i = 1, #dyes do type = "shapeless", output = "wool:" .. name, recipe = {"group:dye," .. color_group, "group:wool"}, + + minetest.register_craft{ + type = "shapeless", + output = "farming:string 4", + recipe = {"group:wool"} + } } end