From 7fda66a5dd09d9e372ca3a661ef726caa405132e Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 1 Apr 2017 23:10:27 +0200 Subject: [PATCH] Add helper recipes for 3 saplings --- mods/MISC/mcl_temp_helper_recipes/init.lua | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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" }, + }, +})