mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-04 21:10:04 -04:00
Make it possible to craft sticks into wood
This commit is contained in:
parent
e707ba3cf1
commit
f013306c27
1 changed files with 8 additions and 0 deletions
|
@ -21,6 +21,14 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:wood',
|
||||
recipe = {
|
||||
{'default:stick', 'default:stick'},
|
||||
{'default:stick', 'default:stick'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:fence_wood 2',
|
||||
recipe = {
|
||||
|
|
Loading…
Add table
Reference in a new issue