thanks
Sorry, I've noticed that there is a mod of charcoal without textures.
But equally, I could say that I do wrong??
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
minetest.register_node("charcoal:charcoal", {
description = "Charcoal",
tiles = {"charcoal.png"},
})
minetest.register_craft({
type = "fuel",
recipe = "charcoal:charcoal",
burntime = 50,
})
minetest.register_craft({
type = "cooking",
recipe = "default:tree",
output = "charcoal:charcoal",
})
minetest.register_craft({
output = 'default:torch 4',
recipe = {
{'charcoal:charcoal'},
{'default:stick'},
}
})