diff --git a/depends.txt b/depends.txt index 7d23713..7edd673 100644 --- a/depends.txt +++ b/depends.txt @@ -3,4 +3,5 @@ subterrane farming? cottages? bucket? -dynamic_liquid? \ No newline at end of file +dynamic_liquid? +wool? \ No newline at end of file diff --git a/plants/pig_tail.lua b/plants/pig_tail.lua index 27ca20f..7fac880 100644 --- a/plants/pig_tail.lua +++ b/plants/pig_tail.lua @@ -62,6 +62,16 @@ minetest.register_craftitem("dfcaverns:pig_tail_thread", { groups = {flammable = 1, thread = 1}, }) +if minetest.get_modpath("wool") then + minetest.register_craft({ + output = "wool:white", + recipe = { + {"group:thread", "group:thread"}, + {"group:thread", "group:thread"}, + } + }) +end + minetest.register_craft({ type = "fuel", recipe = "dfcaverns:pig_tail_thread",