forked from VoxeLibre/VoxeLibre
15 lines
306 B
Lua
15 lines
306 B
Lua
--GLUE
|
|
minetest.register_craftitem("mesecons_materials:glue", {
|
|
image = "jeija_glue.png",
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
description="Glue",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = '"mesecons_materials:glue" 2',
|
|
type = "cooking",
|
|
recipe = "default:sapling",
|
|
cooktime = 2
|
|
})
|
|
|