From b2f9047e60fd760eeef8fa92a9162cd5e11b6a89 Mon Sep 17 00:00:00 2001 From: electrodude Date: Sun, 17 Apr 2016 23:05:38 -0400 Subject: Fixed mixup between enables for conductor and detector tubes pipeworks.enable_detector_tube would define detector tubes but the recipe for conductor tubes, and vice versa --- signal_tubes.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'signal_tubes.lua') diff --git a/signal_tubes.lua b/signal_tubes.lua index bfce14a..c7b61ec 100644 --- a/signal_tubes.lua +++ b/signal_tubes.lua @@ -58,10 +58,10 @@ if pipeworks.enable_detector_tube then }) minetest.register_craft( { - output = "pipeworks:conductor_tube_off_1 6", + output = "pipeworks:detector_tube_off_1 2", recipe = { { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, - { "mesecons:mesecon", "mesecons:mesecon", "mesecons:mesecon" }, + { "mesecons:mesecon", "mesecons_materials:silicon", "mesecons:mesecon" }, { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } }, }) @@ -99,10 +99,10 @@ if pipeworks.enable_conductor_tube then }) minetest.register_craft( { - output = "pipeworks:detector_tube_off_1 2", + output = "pipeworks:conductor_tube_off_1 6", recipe = { { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, - { "mesecons:mesecon", "mesecons_materials:silicon", "mesecons:mesecon" }, + { "mesecons:mesecon", "mesecons:mesecon", "mesecons:mesecon" }, { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } }, }) -- cgit v1.2.3