forked from VoxeLibre/VoxeLibre
Fix torch crafting
This commit is contained in:
parent
291eae2d12
commit
d9bf394b22
|
@ -32,7 +32,13 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "default:torch 4",
|
||||||
|
recipe = {
|
||||||
|
{ "group:coal" },
|
||||||
|
{ "default:stick" },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:mossycobble',
|
output = 'default:mossycobble',
|
||||||
|
|
|
@ -24,12 +24,14 @@ minetest.register_craftitem("default:book", {
|
||||||
|
|
||||||
minetest.register_craftitem("default:coal_lump", {
|
minetest.register_craftitem("default:coal_lump", {
|
||||||
description = "Coal",
|
description = "Coal",
|
||||||
|
groups = { coal=1 },
|
||||||
inventory_image = "default_coal_lump.png",
|
inventory_image = "default_coal_lump.png",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("default:charcoal_lump", {
|
minetest.register_craftitem("default:charcoal_lump", {
|
||||||
description = "Charcoal",
|
description = "Charcoal",
|
||||||
|
groups = { coal=1 },
|
||||||
inventory_image = "default_charcoal_lump.png",
|
inventory_image = "default_charcoal_lump.png",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue