diff --git a/crafts.lua b/crafts.lua index 2c33dd3..8e2bae8 100644 --- a/crafts.lua +++ b/crafts.lua @@ -21,6 +21,26 @@ if minetest.get_modpath("farming") then }) end +if minetest.get_modpath("hemp") then + minetest.register_craft({ + output = 'ropes:ropesegment', + recipe = { + {'hemp:hemp_rope'}, + {'hemp:hemp_rope'}, + } + }) +end + +if minetest.get_modpath("cottages") then + minetest.register_craft({ + output = 'ropes:ropesegment', + recipe = { + {'cottages:rope'}, + {'cottages:rope'}, + } + }) +end + minetest.register_craft({ output = 'ropes:ropesegment', recipe = { diff --git a/depends.txt b/depends.txt index 6672602..55c98cb 100644 --- a/depends.txt +++ b/depends.txt @@ -3,4 +3,6 @@ farming? vines? doc? intllib? -loot? \ No newline at end of file +loot? +hemp? +cottages? \ No newline at end of file