MineClone2/mods/torches/crafting.lua

15 lines
201 B
Lua
Raw Normal View History

2017-01-04 04:47:36 +01:00
minetest.register_craft({
type = "fuel",
recipe = "torches:torch",
burntime = 4,
})
minetest.register_craft({
output = 'torches:torch 4',
recipe = {
2017-01-05 04:39:36 +01:00
{'group:coal'},
2017-01-04 04:47:36 +01:00
{'default:stick'},
}
})