Fix all recipes that use pipeworks pneumatic tubes to follow latest changes
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>
Thu, 2 Jan 2014 04:27:51 +0000 (23:27 -0500)
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>
Thu, 2 Jan 2014 04:27:51 +0000 (23:27 -0500)
in pipeworks node namining conventions.

technic/crafts.lua
technic/machines/HV/generator.lua
technic/machines/MV/alloy_furnace.lua
technic/machines/MV/electric_furnace.lua
technic/machines/MV/generator.lua
technic/machines/MV/grinder.lua
technic/machines/other/injector.lua

index 9545af8421738b559eadf04147de25340b743789..591c02ef86d586173eb2484052d918c58bf9fc33 100644 (file)
@@ -1,7 +1,7 @@
 -- tubes crafting recipes
 
 minetest.register_craft({
-       output = 'pipeworks:tube_000000 9',
+       output = 'pipeworks:tube_1 9',
        recipe = {
                {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
                {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
@@ -11,28 +11,28 @@ minetest.register_craft({
 minetest.register_craft({
        output = 'pipeworks:mese_tube_000000',
        recipe = {
-               {'default:mese_crystal_fragment', 'pipeworks:tube_000000', 'default:mese_crystal_fragment'},
+               {'default:mese_crystal_fragment', 'pipeworks:tube_1', 'default:mese_crystal_fragment'},
                }
 })
 
 minetest.register_craft({
     output = 'pipeworks:accelerator_tube_000000',
     recipe = {
-        {'technic:copper_coil', 'pipeworks:tube_000000', 'technic:copper_coil'},
+        {'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'},
         }
 })
 
 minetest.register_craft({
     output = 'pipeworks:detector_tube_off_000000',
     recipe = {
-        {'mesecons:mesecon', 'pipeworks:tube_000000', 'mesecons:mesecon'},
+        {'mesecons:mesecon', 'pipeworks:tube_1', 'mesecons:mesecon'},
         }
 })
 
 minetest.register_craft({
     output = 'pipeworks:sand_tube_000000',
     recipe = {
-        {'default:sand', 'pipeworks:tube_000000', 'default:sand'},
+        {'default:sand', 'pipeworks:tube_1', 'default:sand'},
         }
 })
 
@@ -47,7 +47,7 @@ minetest.register_craft({
     output = 'pipeworks:teleport_tube_000000',
     recipe = {
         {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
-        {'pipeworks:tube_000000', 'technic:control_logic_unit', 'pipeworks:tube_000000'},
+        {'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'},
         {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
         }
 })
index 4ed6ab2838b28c5eabd699539a32062174d651ff..8aa734e188caa2e73a80dc256e18d9e87c3d0cc1 100644 (file)
@@ -4,7 +4,7 @@ minetest.register_craft({
        output = 'technic:hv_generator',
        recipe = {
                {'technic:stainless_steel_ingot', 'technic:mv_generator',   'technic:stainless_steel_ingot'},
-               {'pipeworks:tube_000000',         'technic:hv_transformer', 'pipeworks:tube_000000'},
+               {'pipeworks:tube_1',         'technic:hv_transformer', 'pipeworks:tube_1'},
                {'technic:stainless_steel_ingot', 'technic:hv_cable',       'technic:stainless_steel_ingot'},
        }
 })
index c3350bb24952a9c5d8d75c07ab6376a2543d371b..1fd3fe15f4b0c0f6221b9c2856cb0750396cf99c 100644 (file)
@@ -4,7 +4,7 @@ minetest.register_craft({
        output = 'technic:mv_alloy_furnace',
        recipe = {
                {'technic:stainless_steel_ingot', 'technic:lv_alloy_furnace', 'technic:stainless_steel_ingot'},
-               {'pipeworks:tube_000000',         'technic:mv_transformer',   'pipeworks:tube_000000'},
+               {'pipeworks:tube_1',         'technic:mv_transformer',   'pipeworks:tube_1'},
                {'technic:stainless_steel_ingot', 'technic:mv_cable0',        'technic:stainless_steel_ingot'},
        }
 })
index 5cd68872c0f35646750eb8ac62b4c5a054129cb3..1f6b1c2fa63a7de0bb204abf574f894c02a41e85 100644 (file)
@@ -9,7 +9,7 @@ minetest.register_craft({
        output = 'technic:mv_electric_furnace',
        recipe = {
                {'technic:stainless_steel_ingot', 'technic:lv_electric_furnace', 'technic:stainless_steel_ingot'},
-               {'pipeworks:tube_000000',         'technic:mv_transformer',      'pipeworks:tube_000000'},
+               {'pipeworks:tube_1',         'technic:mv_transformer',      'pipeworks:tube_1'},
                {'technic:stainless_steel_ingot', 'technic:mv_cable0',           'technic:stainless_steel_ingot'},
        }
 })
index 5a84d120b5789e0939a7c3b4156e13b7b0d6440d..21c7e8439ff15c4d9ed4e2512a1aa113a0e8ebec 100644 (file)
@@ -4,7 +4,7 @@ minetest.register_craft({
        output = 'technic:mv_generator',
        recipe = {
                {'technic:stainless_steel_ingot', 'technic:lv_generator',   'technic:stainless_steel_ingot'},
-               {'pipeworks:tube_000000',         'technic:mv_transformer', 'pipeworks:tube_000000'},
+               {'pipeworks:tube_1',         'technic:mv_transformer', 'pipeworks:tube_1'},
                {'technic:stainless_steel_ingot', 'technic:mv_cable',       'technic:stainless_steel_ingot'},
        }
 })
index 8e3bf2fc0d253c2944662ee4b1fcc0c99b264f92..dac536ce527e794724e0fb09ce94383dda8ceaa8 100644 (file)
@@ -4,7 +4,7 @@ minetest.register_craft({
        output = 'technic:mv_grinder',
        recipe = {
                {'technic:stainless_steel_ingot', 'technic:lv_grinder',     'technic:stainless_steel_ingot'},
-               {'pipeworks:tube_000000',         'technic:mv_transformer', 'pipeworks:tube_000000'},
+               {'pipeworks:tube_1',         'technic:mv_transformer', 'pipeworks:tube_1'},
                {'technic:stainless_steel_ingot', 'technic:mv_cable0',      'technic:stainless_steel_ingot'},
        }
 })
index 14bc984038e698acd22803cba2e71c39db6ecc57..581d27283dfa4474dd9053be816b511601c7e598 100644 (file)
@@ -50,7 +50,7 @@ minetest.register_craft({
        recipe = {
                {'', 'technic:control_logic_unit',''},
                {'', 'default:chest',''},
-               {'', 'pipeworks:tube_000000',''},
+               {'', 'pipeworks:tube_1',''},
        }
 })