mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-06 05:44:26 -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({
|
minetest.register_craft({
|
||||||
output = 'default:fence_wood 2',
|
output = 'default:fence_wood 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue