From 3a3700537baa748e459258385d27bb79ab391546 Mon Sep 17 00:00:00 2001
From: RealBadAngel <mk@realbadangel.pl>
Date: Sat, 06 Jul 2013 10:35:48 +0200
Subject: [PATCH] Merge changes made in technic_game

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

diff --git a/technic/electric.lua b/technic/electric.lua
index b6406af..fc519de 100644
--- a/technic/electric.lua
+++ b/technic/electric.lua
@@ -22,7 +22,7 @@
 	output = 'technic:battery 1',
 	recipe = {
 		{'default:wood', 'default:copper_ingot', 'default:wood'},
-		{'default:wood', 'moreores:tin_ingot',   'default:wood'},
+		{'default:wood', 'moreores:tin_ingot', 'default:wood'},
 		{'default:wood', 'default:copper_ingot', 'default:wood'},
 	}
 }) 
@@ -30,17 +30,17 @@
 minetest.register_craft({
 	output = 'technic:battery_box 1',
 	recipe = {
-		{'technic:battery',     'default:wood',         'technic:battery'},
-		{'technic:battery',     'default: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:brick', 'default:brick', 'default:brick'},
+		{'default:brick', '', 'default:brick'},
 		{'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
 	}
 })

--
Gitblit v1.8.0