From 76c2d8132c4b2828067d15bcd55eecca9627885f Mon Sep 17 00:00:00 2001
From: RealBadAngel <mk@realbadangel.pl>
Date: Thu, 18 Apr 2013 00:16:32 +0200
Subject: [PATCH] FIX THAT AGAIN :P

---
 technic/alloy_furnaces_commons.lua |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/technic/alloy_furnaces_commons.lua b/technic/alloy_furnaces_commons.lua
index e058d56..559d002 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

--
Gitblit v1.8.0