summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAuke Kok <sofar+github@foo-projects.org>2016-04-17 20:21:12 -0700
committerAuke Kok <sofar+github@foo-projects.org>2016-04-17 20:21:12 -0700
commit193a5f8db96f92c386fe22c2ed213c434bca42b0 (patch)
tree9fcdd06eb3ac1f072060ba054c9e6104756fd73c
parent66cfc745e1fc7f0d0ca4e4a5cbbd3e9928c192bd (diff)
parentb2f9047e60fd760eeef8fa92a9162cd5e11b6a89 (diff)
downloadpipeworks-193a5f8db96f92c386fe22c2ed213c434bca42b0.tar
pipeworks-193a5f8db96f92c386fe22c2ed213c434bca42b0.tar.gz
pipeworks-193a5f8db96f92c386fe22c2ed213c434bca42b0.tar.bz2
pipeworks-193a5f8db96f92c386fe22c2ed213c434bca42b0.tar.xz
pipeworks-193a5f8db96f92c386fe22c2ed213c434bca42b0.zip
Merge pull request #135 from electrodude/bugs
Fixed mixup between enables for conductor and detector tubes
-rw-r--r--signal_tubes.lua8
1 files changed, 4 insertions, 4 deletions
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" }
},
})