From 92a089efe63fe0bbb1d88a18c3e98a085e0db2f8 Mon Sep 17 00:00:00 2001 From: FaceDeer Date: Sat, 30 Sep 2017 10:17:32 -0600 Subject: [PATCH] hemp and cottages have ropes too --- crafts.lua | 20 ++++++++++++++++++++ depends.txt | 4 +++- 2 files changed, 23 insertions(+), 1 deletion(-) 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