Remove saplings from temp helper recipes

This commit is contained in:
Wuzzy 2017-09-07 04:43:01 +02:00
parent 14a276033d
commit 93fdf83c07
1 changed files with 0 additions and 31 deletions

View File

@ -120,34 +120,3 @@ minetest.register_craft({
-- 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