mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-02 20:10:04 -04:00
Default/crafting: Add composting of leaves group to dirt
This commit is contained in:
parent
14ee61ab92
commit
bfeba3aceb
1 changed files with 9 additions and 0 deletions
|
@ -635,6 +635,15 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:dirt',
|
||||
recipe = {
|
||||
{'group:leaves', 'group:leaves', 'group:leaves'},
|
||||
{'group:leaves', 'group:leaves', 'group:leaves'},
|
||||
{'group:leaves', 'group:leaves', 'group:leaves'},
|
||||
}
|
||||
})
|
||||
|
||||
--
|
||||
-- Crafting (tool repair)
|
||||
--
|
||||
|
|
Loading…
Add table
Reference in a new issue