From 43295b5b7f2db8292260f0eecd3b5514394a94b3 Mon Sep 17 00:00:00 2001 From: Zefram Date: Sun, 6 Jul 2014 15:57:35 +0100 Subject: [PATCH] Fix brass alloying recipe Commit d55ecc39f954b33c17ae9a1da4aeff6382fcb790 introduced a bogus reference to "technic:copper_ingot". --- technic/machines/register/alloy_recipes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic/machines/register/alloy_recipes.lua b/technic/machines/register/alloy_recipes.lua index be4fcf2..3227739 100644 --- a/technic/machines/register/alloy_recipes.lua +++ b/technic/machines/register/alloy_recipes.lua @@ -18,7 +18,7 @@ local recipes = { {"technic:carbon_steel_dust 3", "technic:chromium_dust", "technic:stainless_steel_dust 4"}, {"technic:carbon_steel_ingot 3", "technic:chromium_ingot", "technic:stainless_steel_ingot 4"}, {"technic:copper_dust 2", "technic:zinc_dust", "technic:brass_dust 3"}, - {"technic:copper_ingot 2", "technic:zinc_ingot", "technic:brass_ingot 3"}, + {"default:copper_ingot 2", "technic:zinc_ingot", "technic:brass_ingot 3"}, {"default:sand 2", "technic:coal_dust 2", "technic:silicon_wafer"}, {"technic:silicon_wafer", "technic:gold_dust", "technic:doped_silicon_wafer"}, }