mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-29 05:51:05 +01:00
Remove saplings from temp helper recipes
This commit is contained in:
parent
14a276033d
commit
93fdf83c07
1 changed files with 0 additions and 31 deletions
|
@ -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 a new issue