summaryrefslogtreecommitdiff
path: root/ropes/crafts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ropes/crafts.lua')
-rw-r--r--ropes/crafts.lua41
1 files changed, 2 insertions, 39 deletions
diff --git a/ropes/crafts.lua b/ropes/crafts.lua
index 8e2bae8..299c0cc 100644
--- a/ropes/crafts.lua
+++ b/ropes/crafts.lua
@@ -3,53 +3,16 @@ local MP = minetest.get_modpath(minetest.get_current_modname())
local S, NS = dofile(MP.."/intllib.lua")
if minetest.get_modpath("farming") then
--- this doesn't work reliably due to side effects of https://github.com/minetest/minetest/issues/5518
--- local old_def = minetest.registered_craftitems["farming:cotton"]
--- if old_def then
--- old_def.groups["thread"] = 1
--- minetest.override_item("farming:cotton", {
--- groups = old_def.groups
--- })
--- end
minetest.register_craft({
- output = 'ropes:ropesegment',
+ output = 'ropes:ropesegment',
recipe = {
{'farming:cotton','farming:cotton'},
{'farming:cotton','farming:cotton'},
- {'farming:cotton','farming:cotton'},
- }
- })
-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'},
+ {'farming:cotton','farming:cotton'}
}
})
end
-minetest.register_craft({
- output = 'ropes:ropesegment',
- recipe = {
- {'group:thread','group:thread'},
- {'group:thread','group:thread'},
- {'group:thread','group:thread'},
- }
-})
-
minetest.register_craftitem("ropes:ropesegment", {
description = S("Rope Segment"),
_doc_items_longdesc = ropes.doc.ropesegment_longdesc,