From b55bae95d86eea65bb2e56550f2d06115c51c746 Mon Sep 17 00:00:00 2001
From: RealBadAngel <mk@realbadangel.pl>
Date: Sun, 03 Feb 2013 02:17:22 +0100
Subject: [PATCH] Added fully functional MV electric furnace

---
 technic/items.lua |   21 ++++++++++++++++++++-
 1 files changed, 20 insertions(+), 1 deletions(-)

diff --git a/technic/technic/items.lua b/technic/items.lua
similarity index 89%
rename from technic/technic/items.lua
rename to technic/items.lua
index c2b596e..3fa1fc3 100644
--- a/technic/technic/items.lua
+++ b/technic/items.lua
@@ -18,6 +18,12 @@
 		{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
 	}
 })
+minetest.register_craft({
+	output = 'pipeworks:mese_tube_000000',
+	recipe = {
+		{'default:mese_crystal_fragment', 'pipeworks:tube_000000', 'default:mese_crystal_fragment'},
+		}
+})
 
 minetest.register_craftitem( "technic:diamond_drill_head", {
 	description = "Diamond Drill Head",
@@ -49,7 +55,6 @@
 	is_ground_content = true,
 	groups = {cracky=3},
 	sounds = default.node_sound_stone_defaults(),
-	drop = 'craft "technic:diamond_block" 1',
 }) 
 
 minetest.register_craft({
@@ -155,3 +160,17 @@
 	}
 })
 
+minetest.register_craftitem( "technic:control_logic_unit", {
+	description = "Control Logic Unit",
+	inventory_image = "technic_control_logic_unit.png",
+	on_place_on_ground = minetest.craftitem_place_item,
+})
+
+minetest.register_craft({
+	output = 'technic:control_logic_unit',
+	recipe = {
+		{'', 'moreores:gold_ingot', ''},
+		{'moreores:copper_ingot', 'technic:silicon_wafer', 'moreores:copper_ingot'},
+		{'', 'moreores:copper_ingot', ''},
+	}
+})

--
Gitblit v1.8.0