added smelting coal from trees for all tree types

This commit is contained in:
kaadmy 2015-11-26 10:40:24 -08:00
parent 7f543dcd83
commit f602cb022f
1 changed files with 16 additions and 0 deletions

View File

@ -587,6 +587,22 @@ minetest.register_craft(
cooktime = 4,
})
minetest.register_craft(
{
type = "cooking",
output = "default:lump_coal",
recipe = "default:tree_oak",
cooktime = 5,
})
minetest.register_craft(
{
type = "cooking",
output = "default:lump_coal",
recipe = "default:tree_birch",
cooktime = 5,
})
minetest.register_craft(
{
type = "cooking",