VoxeLibre/mods/redstone/mesecons_materials/init.lua

15 lines
306 B
Lua
Raw Normal View History

2015-06-29 19:55:56 +02:00
--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
})