From d12cdef639f9b7d9d4e2f7638ec271ddbef0535f Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 10 Feb 2017 17:16:47 +0100 Subject: [PATCH] Change chorus fruit crafting --- mods/mcl_temp_helper_recipes/init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/mcl_temp_helper_recipes/init.lua b/mods/mcl_temp_helper_recipes/init.lua index 890b7695b..87d495f01 100644 --- a/mods/mcl_temp_helper_recipes/init.lua +++ b/mods/mcl_temp_helper_recipes/init.lua @@ -65,9 +65,9 @@ minetest.register_craft({ minetest.register_craft({ output = "mcl_end:chorus_fruit", recipe = { - { "mcl_flowers:allium", "mcl_flowers:allium", "mcl_flowers:allium" }, - { "mcl_flowers:allium", "mcl_flowers:allium", "mcl_flowers:allium" }, - { "mcl_flowers:allium", "mcl_flowers:allium", "mcl_flowers:allium" }, + { "mcl_flowers:allium", "mcl_end:end_stone", "mcl_flowers:allium" }, + { "mcl_end:end_stone", "mcl_end:end_stone", "mcl_end:end_stone" }, + { "mcl_flowers:allium", "mcl_end:end_stone", "mcl_flowers:allium" }, }, })