From 68b7bcc28e39bdf0926072b834eeeeec0ee6c721 Mon Sep 17 00:00:00 2001
From: Zefram <zefram@fysh.org>
Date: Thu, 22 May 2014 20:57:50 +0200
Subject: [PATCH] split default iron/steel into three metals

---
 technic_chests/iron_chest.lua |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/technic_chests/iron_chest.lua b/technic_chests/iron_chest.lua
index c21fcfb..a1f5c63 100644
--- a/technic_chests/iron_chest.lua
+++ b/technic_chests/iron_chest.lua
@@ -2,25 +2,25 @@
 minetest.register_craft({
 	output = 'technic:iron_chest 1',
 	recipe = {
-		{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
-		{'default:steel_ingot','default:chest','default:steel_ingot'},
-		{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
+		{'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'},
+		{'technic:cast_iron_ingot','default:chest','technic:cast_iron_ingot'},
+		{'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'},
 	}
 })
 
 minetest.register_craft({
 	output = 'technic:iron_locked_chest 1',
 	recipe = {
-		{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
-		{'default:steel_ingot','default:chest_locked','default:steel_ingot'},
-		{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
+		{'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'},
+		{'technic:cast_iron_ingot','default:chest_locked','technic:cast_iron_ingot'},
+		{'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'},
 	}
 })
 
 minetest.register_craft({
 	output = 'technic:iron_locked_chest 1',
 	recipe = {
-		{'default:steel_ingot'},
+		{'technic:wrought_iron_ingot'},
 		{'technic:iron_chest'},
 	}
 })

--
Gitblit v1.8.0