From 68ea0acbd0cb6dc61b849efab4d6207bdf515853 Mon Sep 17 00:00:00 2001
From: Zefram <zefram@fysh.org>
Date: Wed, 09 Jul 2014 09:17:43 +0200
Subject: [PATCH] Consistently use cable in electric machine recipes

---
 technic/machines/MV/generator.lua |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/technic/machines/MV/generator.lua b/technic/machines/MV/generator.lua
index 973bbd2..4ae24b8 100644
--- a/technic/machines/MV/generator.lua
+++ b/technic/machines/MV/generator.lua
@@ -1,14 +1,13 @@
-
 minetest.register_alias("generator_mv", "technic:generator_mv")
 
 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'},
-		{'technic:stainless_steel_ingot', 'technic:mv_cable',       'technic:stainless_steel_ingot'},
+		{'pipeworks:tube_1',              'technic:mv_transformer', 'pipeworks:tube_1'},
+		{'technic:stainless_steel_ingot', 'technic:mv_cable0',      'technic:stainless_steel_ingot'},
 	}
 })
 
-technic.register_generator({tier="MV", supply=600})
+technic.register_generator({tier="MV", tube=1, supply=600})
 

--
Gitblit v1.8.0