mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-29 18:16:27 -04:00
Add charcoals
This commit is contained in:
parent
41873ca6f2
commit
0442573140
1 changed files with 10 additions and 0 deletions
|
@ -350,3 +350,13 @@ minetest.register_craftitem("default:blueberries", {
|
|||
groups = {food_blueberries = 1, food_berry = 1},
|
||||
on_use = minetest.item_eat(2),
|
||||
})
|
||||
minetest.register_craftitem("default:hardwood_charcoal", {
|
||||
description = S("Hardwood Charcoal"),
|
||||
inventory_image = "default_hardwood_charcoal.png",
|
||||
groups = {coal = 1, flammable = 1}
|
||||
})
|
||||
minetest.register_craftitem("default:softwood_charcoal", {
|
||||
description = S("Softwoodwood Charcoal"),
|
||||
inventory_image = "default_softwood_charcoal.png",
|
||||
groups = {coal = 1, flammable = 1}
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue