From 2d168e5afc57f8da9973b67d0811cc33fed9e3a3 Mon Sep 17 00:00:00 2001
From: ShadowNinja <noreply@gmail.com>
Date: Fri, 05 Jul 2013 07:57:45 +0200
Subject: [PATCH] Use ores from default instead of moreores

---
 technic_chests/gold_chest.lua |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/technic_chests/gold_chest.lua b/technic_chests/gold_chest.lua
index fa275fa..8dc1274 100644
--- a/technic_chests/gold_chest.lua
+++ b/technic_chests/gold_chest.lua
@@ -19,18 +19,18 @@
 minetest.register_craft({
 	output = 'technic:gold_chest 1',
 	recipe = {
-		{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
-		{'moreores:gold_ingot','technic:silver_chest','moreores:gold_ingot'},
-		{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
+		{'default:gold_ingot', 'default:gold_ingot',   'default:gold_ingot'},
+		{'default:gold_ingot', 'technic:silver_chest', 'default:gold_ingot'},
+		{'default:gold_ingot', 'default:gold_ingot',   'default:gold_ingot'},
 	}
 })
 
 minetest.register_craft({
 	output = 'technic:gold_locked_chest 1',
 	recipe = {
-		{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
-		{'moreores:gold_ingot','technic:silver_locked_chest','moreores:gold_ingot'},
-		{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
+		{'default:gold_ingot', 'default:gold_ingot',          'default:gold_ingot'},
+		{'default:gold_ingot', 'technic:silver_locked_chest', 'default:gold_ingot'},
+		{'default:gold_ingot', 'default:gold_ingot',          'default:gold_ingot'},
 	}
 })
 

--
Gitblit v1.8.0