From ddb6801b5ce4f4aa2a8021e6f958267c4eef3855 Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Tue, 29 Sep 2015 18:20:46 +0200 Subject: [PATCH] Fix detector crafting recipe --- detector.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/detector.lua b/detector.lua index 81a994a..e89871a 100644 --- a/detector.lua +++ b/detector.lua @@ -43,8 +43,8 @@ boost_cart:register_rail("boost_cart:detectorrail_on", { minetest.register_craft({ output = "boost_cart:detectorrail 6", recipe = { - {"default:steel_ingot", "mesecon:mesecon", "default:steel_ingot"}, + {"default:steel_ingot", "mesecons:wire_00000000_off", "default:steel_ingot"}, {"default:steel_ingot", "group:stick", "default:steel_ingot"}, - {"default:steel_ingot", "mesecon:mesecon", "default:steel_ingot"}, + {"default:steel_ingot", "mesecons:wire_00000000_off", "default:steel_ingot"}, }, })