From 467dcf1d5d2daccde8fe5cfb45317482fe004cc3 Mon Sep 17 00:00:00 2001
From: kpoppel <poulsen.kim@gmail.com>
Date: Tue, 18 Jun 2013 19:18:23 +0200
Subject: [PATCH] Merge pull request #4 from RealBadAngel/indev

---
 technic/alloy_furnaces_commons.lua |   12 +++++-------
 1 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/technic/alloy_furnaces_commons.lua b/technic/alloy_furnaces_commons.lua
index e058d56..9c9c42a 100644
--- a/technic/alloy_furnaces_commons.lua
+++ b/technic/alloy_furnaces_commons.lua
@@ -19,14 +19,12 @@
 alloy_recipes[registered_recipes_count].dst_name=string3
 alloy_recipes[registered_recipes_count].dst_count=count3
 registered_recipes_count=registered_recipes_count+1
-if UI_recipes_hook then
-	minetest.register_craft({
+if unified_inventory then
+	unified_inventory.register_craft({
 	type = "alloy",
 	output = string3.." "..count3,
-	recipe = {
-		{string1.." "..count1},
-		{string2.." "..count2},
-			}
+	items = {string1.." "..count1,string2.." "..count2},
+	width = 2,
 	})
 	end
 end
@@ -38,4 +36,4 @@
 register_alloy_recipe ("technic:copper_dust",2, "technic:zinc_dust",1, "technic:brass_dust",3)
 register_alloy_recipe ("moreores:copper_ingot",2, "technic:zinc_ingot",1, "technic:brass_ingot",3)
 register_alloy_recipe ("default:sand",2, "technic:coal_dust",2, "technic:silicon_wafer",1)
-register_alloy_recipe ("technic:silicon_wafer",1, "technic:mithril_dust",1, "technic:doped_silicon_wafer",1)
+register_alloy_recipe ("technic:silicon_wafer",1, "technic:gold_dust",1, "technic:doped_silicon_wafer",1)

--
Gitblit v1.8.0