1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-08-30 09:10:35 +02:00
server-nalc/mods/plantlife_modpack/vines/crafts.lua

15 lines
303 B
Lua
Raw Normal View History

minetest.register_craft({
output = 'vines:rope_block',
recipe = vines.recipes['rope_block']
})
minetest.register_craft({
output = 'vines:shears',
recipe = vines.recipes['shears']
})
minetest.register_craftitem("vines:vines", {
description = "Vines",
inventory_image = "vines_item.png",
})