1
0
mirror of https://github.com/minetest-mods/moreblocks.git synced 2025-05-29 22:50:49 +02:00

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

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

(image error) Size: 175 B

Binary file not shown.

Before

(image error) Size: 122 B

After

(image error) Size: 122 B