From 859fd1e0bed40e4037fb86d04a2d9ecf76292192 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 10 Feb 2017 17:10:24 +0100 Subject: [PATCH] Add carrot temp craft --- mods/mcl_temp_helper_recipes/init.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mods/mcl_temp_helper_recipes/init.lua b/mods/mcl_temp_helper_recipes/init.lua index eb01737d9..9c7dc0f99 100644 --- a/mods/mcl_temp_helper_recipes/init.lua +++ b/mods/mcl_temp_helper_recipes/init.lua @@ -209,3 +209,11 @@ minetest.register_craft({ {"mcl_farming:potato_item","mcl_farming:potato_item","mcl_farming:potato_item"}, }, }) +minetest.register_craft({ + output = "mcl_farming:carrot_item", + recipe = { + {"mcl_flowers:poppy", "mcl_flowers:oxeye_daisy", "mcl_flowers:dandelion",}, + {"mcl_flowers:tulip_pink", "mcl_flowers:tulip_orange", "mcl_flowers:tulip_red",}, + {"mcl_flowers:blue_orchid", "mcl_flowers:azure_bluet", "mcl_flowers:allium",} + }, +})