Added the ability to craft sticks back into wood, new jungle stick texture.

This commit is contained in:
Calinou 2014-04-30 20:16:42 +02:00
parent b0ab5cd815
commit 6bb6861ba7
3 changed files with 16 additions and 0 deletions

View File

@ -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