diff --git a/mods/MISC/mcl_temp_helper_recipes/init.lua b/mods/MISC/mcl_temp_helper_recipes/init.lua index afc7fc3e0..f2e55810c 100644 --- a/mods/MISC/mcl_temp_helper_recipes/init.lua +++ b/mods/MISC/mcl_temp_helper_recipes/init.lua @@ -40,7 +40,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "mcl_end:chorus_fruit", + output = "mcl_end:chorus_flower", recipe = { { "mcl_flowers:allium", "mcl_end:end_stone", "mcl_flowers:allium" }, { "mcl_end:end_stone", "mcl_end:end_stone", "mcl_end:end_stone" }, @@ -158,12 +158,3 @@ minetest.register_craft({ output = "mcl_core:gold_ingot 9", recipe = {{ "mcl_core:emerald" }}, }) - -minetest.register_craft({ - output = "mcl_end:chorus_flower", - recipe = { - { "mcl_end:chorus_fruit","mcl_end:chorus_fruit","mcl_end:chorus_fruit" }, - { "mcl_end:chorus_fruit","mcl_end:chorus_fruit","mcl_end:chorus_fruit" }, - { "mcl_end:chorus_fruit","mcl_end:chorus_fruit","mcl_end:chorus_fruit" }, - } -})