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/water.lua |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/technic/water.lua b/technic/water.lua
index 6ddaa46..044ee59 100644
--- a/technic/water.lua
+++ b/technic/water.lua
@@ -6,27 +6,27 @@
 minetest.register_craft({
 	output = 'technic:battery 1',
 	recipe = {
-		{'default:wood', 'moreores:copper_ingot', 'default:wood'},
-		{'default:wood', 'moreores:tin_ingot', 'default:wood'},
-		{'default:wood', 'moreores:copper_ingot', 'default:wood'},
+		{'default:wood', 'default:copper_ingot', 'default:wood'},
+		{'default:wood', 'moreores:tin_ingot',   'default:wood'},
+		{'default:wood', 'default:copper_ingot', 'default:wood'},
 	}
 }) 
 
 minetest.register_craft({
 	output = 'technic:battery_box 1',
 	recipe = {
-		{'technic:battery', 'default:wood', 'technic:battery'},
-		{'technic:battery', 'moreores:copper_ingot', 'technic:battery'},
-		{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
+		{'technic:battery',     'default:wood',         'technic:battery'},
+		{'technic:battery',     'default:copper_ingot', 'technic:battery'},
+		{'default:steel_ingot', 'default:steel_ingot',  'default:steel_ingot'},
 	}
 }) 
 
 minetest.register_craft({
 	output = 'technic:electric_furnace',
 	recipe = {
-		{'default:brick', 'default:brick', 'default:brick'},
-		{'default:brick', '', 'default:brick'},
-		{'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'},
+		{'default:brick',       'default:brick',         'default:brick'},
+		{'default:brick',       '',                      'default:brick'},
+		{'default:steel_ingot', 'default:copper_ingot',  'default:steel_ingot'},
 	}
 })
 
@@ -556,9 +556,9 @@
 minetest.register_craft({
 	output = 'technic:solar_panel 1',
 	recipe = {
-		{'default:sand', 'default:sand','default:sand'},
-		{'default:sand', 'moreores:copper_ingot','default:sand'},
-		{'default:sand', 'default:sand','default:sand'},
+		{'default:sand', 'default:sand',         'default:sand'},
+		{'default:sand', 'default:copper_ingot', 'default:sand'},
+		{'default:sand', 'default:sand',         'default:sand'},
 
 	}
 })
@@ -585,4 +585,4 @@
 			meta:set_float("active",0)
 		end
 	end,
-}) 
\ No newline at end of file
+}) 

--
Gitblit v1.8.0