mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 16:41:06 +01:00
Add helper recipes for 3 saplings
This commit is contained in:
parent
1527a77735
commit
7fda66a5dd
1 changed files with 27 additions and 0 deletions
|
@ -209,3 +209,30 @@ minetest.register_craft({
|
|||
-- 2 discs are dropped by creeper
|
||||
-- 1 disc is droppd by zombie
|
||||
-- TODO: Remove/fix these drops when creeper drops music discs properly
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:darksapling",
|
||||
recipe = {
|
||||
{ "mcl_core:sapling", "mcl_core:sapling", "mcl_core:sapling" },
|
||||
{ "mcl_core:sapling", "mcl_core:sapling", "mcl_core:sapling" },
|
||||
{ "mcl_core:sapling", "mcl_core:sapling", "mcl_core:sapling" },
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:acaciasapling",
|
||||
recipe = {
|
||||
{ "mcl_core:junglesapling", "mcl_core:junglesapling", "mcl_core:junglesapling" },
|
||||
{ "mcl_core:junglesapling", "mcl_core:junglesapling", "mcl_core:junglesapling" },
|
||||
{ "mcl_core:junglesapling", "mcl_core:junglesapling", "mcl_core:junglesapling" },
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:birchsapling",
|
||||
recipe = {
|
||||
{ "mcl_core:sprucesapling", "mcl_core:sprucesapling", "mcl_core:sprucesapling" },
|
||||
{ "mcl_core:sprucesapling", "mcl_core:sprucesapling", "mcl_core:sprucesapling" },
|
||||
{ "mcl_core:sprucesapling", "mcl_core:sprucesapling", "mcl_core:sprucesapling" },
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue