diff --git a/mods/MISC/mcl_temp_helper_recipes/init.lua b/mods/MISC/mcl_temp_helper_recipes/init.lua index ddd75fd7b..66195bba0 100644 --- a/mods/MISC/mcl_temp_helper_recipes/init.lua +++ b/mods/MISC/mcl_temp_helper_recipes/init.lua @@ -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" }, + }, +})