forked from VoxeLibre/VoxeLibre
Remove saplings from temp helper recipes
This commit is contained in:
parent
14a276033d
commit
93fdf83c07
|
@ -120,34 +120,3 @@ minetest.register_craft({
|
||||||
-- TODO: Remove/fix these drops when creeper drops music discs properly
|
-- TODO: Remove/fix these drops when creeper drops music discs properly
|
||||||
|
|
||||||
|
|
||||||
-- Saplings, to complete the set of saplings in v6 mapgen.
|
|
||||||
-- 3 tree species are missing in v6.
|
|
||||||
local mg_name = minetest.get_mapgen_setting("mg_name")
|
|
||||||
if mg_name == "v6" then
|
|
||||||
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" },
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
Loading…
Reference in New Issue