mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-06-30 23:20:44 +02:00
Added the ability to craft sticks back into wood, new jungle stick texture.
This commit is contained in:
16
crafting.lua
16
crafting.lua
@ -15,6 +15,22 @@ minetest.register_craft({
|
||||
recipe = {{"default:junglesapling"},}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:wood 1",
|
||||
recipe = {
|
||||
{"default:stick", "default:stick"},
|
||||
{"default:stick", "default:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:junglewood 1",
|
||||
recipe = {
|
||||
{"moreblocks:jungle_stick", "moreblocks:jungle_stick"},
|
||||
{"moreblocks:jungle_stick", "moreblocks:jungle_stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:dirt_with_grass 1",
|
||||
type = "shapeless",
|
||||
|
Reference in New Issue
Block a user