mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 08:23:47 +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
|
||||
|
||||
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 = {
|
||||
|
@ -3,4 +3,6 @@ farming?
|
||||
vines?
|
||||
doc?
|
||||
intllib?
|
||||
loot?
|
||||
loot?
|
||||
hemp?
|
||||
cottages?
|
Loading…
Reference in New Issue
Block a user