Fix torch crafting

This commit is contained in:
Wuzzy 2017-01-07 23:56:52 +01:00
parent 291eae2d12
commit d9bf394b22
2 changed files with 9 additions and 1 deletions

View File

@ -32,7 +32,13 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "default:torch 4",
recipe = {
{ "group:coal" },
{ "default:stick" },
}
})
minetest.register_craft({
output = 'default:mossycobble',

View File

@ -24,12 +24,14 @@ minetest.register_craftitem("default:book", {
minetest.register_craftitem("default:coal_lump", {
description = "Coal",
groups = { coal=1 },
inventory_image = "default_coal_lump.png",
stack_max = 64,
})
minetest.register_craftitem("default:charcoal_lump", {
description = "Charcoal",
groups = { coal=1 },
inventory_image = "default_charcoal_lump.png",
stack_max = 64,
})