diff options
author | Zefram <zefram@fysh.org> | 2014-07-06 15:57:35 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-07 15:15:05 +0200 |
commit | ad157d1b8fa9ef6cd2a500d4d9dbe41cbccb7858 (patch) | |
tree | ab6610be16968cfeec6178320eaf23f2a94f07b5 | |
parent | 0e6b3ce86b6993012c217e32bc2c0370340480c5 (diff) |
Fix brass alloying recipe
Commit d55ecc39f954b33c17ae9a1da4aeff6382fcb790 introduced a bogus
reference to "technic:copper_ingot".
-rw-r--r-- | technic/machines/register/alloy_recipes.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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"}, } |