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/copper_chest.lua |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/technic_chests/copper_chest.lua b/technic_chests/copper_chest.lua
index c121e78..44a42f3 100644
--- a/technic_chests/copper_chest.lua
+++ b/technic_chests/copper_chest.lua
@@ -1,18 +1,18 @@
 minetest.register_craft({
 	output = 'technic:copper_chest 1',
 	recipe = {
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
-		{'moreores:copper_ingot','technic:iron_chest','moreores:copper_ingot'},
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
+		{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
+		{'default:copper_ingot', 'technic:iron_chest',   'default:copper_ingot'},
+		{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
 	}
 })
 
 minetest.register_craft({
 	output = 'technic:copper_locked_chest 1',
 	recipe = {
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
-		{'moreores:copper_ingot','technic:iron_locked_chest','moreores:copper_ingot'},
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
+		{'default:copper_ingot', 'default:copper_ingot',      'default:copper_ingot'},
+		{'default:copper_ingot', 'technic:iron_locked_chest', 'default:copper_ingot'},
+		{'default:copper_ingot', 'default:copper_ingot',      'default:copper_ingot'},
 	}
 })
 

--
Gitblit v1.8.0