hemp and cottages have ropes too

This commit is contained in:
FaceDeer 2017-09-30 10:17:32 -06:00
parent 5a4f4198df
commit 92a089efe6
2 changed files with 23 additions and 1 deletions

@ -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 = {

@ -4,3 +4,5 @@ vines?
doc?
intllib?
loot?
hemp?
cottages?