mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-28 02:13:43 +01:00
hemp and cottages have ropes too
This commit is contained in:
parent
5a4f4198df
commit
92a089efe6
20
crafts.lua
20
crafts.lua
@ -21,6 +21,26 @@ if minetest.get_modpath("farming") then
|
|||||||
})
|
})
|
||||||
end
|
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({
|
minetest.register_craft({
|
||||||
output = 'ropes:ropesegment',
|
output = 'ropes:ropesegment',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -3,4 +3,6 @@ farming?
|
|||||||
vines?
|
vines?
|
||||||
doc?
|
doc?
|
||||||
intllib?
|
intllib?
|
||||||
loot?
|
loot?
|
||||||
|
hemp?
|
||||||
|
cottages?
|
Loading…
Reference in New Issue
Block a user