mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-05 09:50:32 +01:00
Added the ability to craft sticks back into wood, new jungle stick texture.
This commit is contained in:
parent
b0ab5cd815
commit
6bb6861ba7
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",
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 175 B |
Binary file not shown.
Before Width: | Height: | Size: 122 B After Width: | Height: | Size: 122 B |
Loading…
Reference in New Issue
Block a user