forked from VoxeLibre/VoxeLibre
Add helper recipes for 3 saplings
This commit is contained in:
parent
1527a77735
commit
7fda66a5dd
|
@ -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 New Issue