mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-01 03:20:03 -04:00
Add Torch crafting with charcoal
This commit is contained in:
parent
b80da80daa
commit
22c20d7e3e
1 changed files with 8 additions and 0 deletions
|
@ -89,6 +89,14 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "default:torch 3",
|
||||||
|
recipe = {
|
||||||
|
{"default:hardwood_charcoal"},
|
||||||
|
{"group:stick"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "default:pick_wood",
|
output = "default:pick_wood",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue