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/tools/mining_lasers.lua |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/technic/tools/mining_lasers.lua b/technic/tools/mining_lasers.lua
index 03286f4..8f32a5a 100644
--- a/technic/tools/mining_lasers.lua
+++ b/technic/tools/mining_lasers.lua
@@ -16,25 +16,25 @@
 minetest.register_craft({
 	output = 'technic:laser_mk1',
 	recipe = {
-		{'default:diamond', 'default:steel_ingot', 'technic:red_energy_crystal'},
-		{'',                'default:steel_ingot', 'default:steel_ingot'},
-		{'',                '',                    'default:copper_ingot'},
+		{'default:diamond', 'technic:carbon_steel_ingot', 'technic:red_energy_crystal'},
+		{'',                'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot'},
+		{'',                '',                           'default:copper_ingot'},
 	}
 })
 minetest.register_craft({
 	output = 'technic:laser_mk2',
 	recipe = {
-		{'default:diamond', 'default:steel_ingot', 'technic:laser_mk1'},
-		{'',                'default:steel_ingot', 'technic:green_energy_crystal'},
-		{'',                '',                    'default:copper_ingot'},
+		{'default:diamond', 'technic:carbon_steel_ingot', 'technic:laser_mk1'},
+		{'',                'technic:carbon_steel_ingot', 'technic:green_energy_crystal'},
+		{'',                '',                           'default:copper_ingot'},
 	}
 })
 minetest.register_craft({
 	output = 'technic:laser_mk3',
 	recipe = {
-		{'default:diamond', 'default:steel_ingot', 'technic:laser_mk2'},
-		{'',                'default:steel_ingot', 'technic:blue_energy_crystal'},
-		{'',                '',                    'default:copper_ingot'},
+		{'default:diamond', 'technic:carbon_steel_ingot', 'technic:laser_mk2'},
+		{'',                'technic:carbon_steel_ingot', 'technic:blue_energy_crystal'},
+		{'',                '',                           'default:copper_ingot'},
 	}
 })
 

--
Gitblit v1.8.0