diff options
author | Zefram <zefram@fysh.org> | 2014-07-06 18:45:16 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-09 09:17:43 +0200 |
commit | 68ea0acbd0cb6dc61b849efab4d6207bdf515853 (patch) | |
tree | c65a2c9e86d215a0094738541d774136059c1be6 /technic/machines/LV/alloy_furnace.lua | |
parent | e8a5a6652d1cab79838bcd0264b6272dbb31f3db (diff) |
Consistently use cable in electric machine recipes
All electric machine recipes now include cable of the appropriate tier
as the bottom-middle ingredient, immediately below the casing ingredient.
Many LV machines were using a copper ingot in that location.
Diffstat (limited to 'technic/machines/LV/alloy_furnace.lua')
-rw-r--r-- | technic/machines/LV/alloy_furnace.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/LV/alloy_furnace.lua b/technic/machines/LV/alloy_furnace.lua index e267f44..bdf2f31 100644 --- a/technic/machines/LV/alloy_furnace.lua +++ b/technic/machines/LV/alloy_furnace.lua @@ -6,7 +6,7 @@ minetest.register_craft({ recipe = { {'default:brick', 'default:brick', 'default:brick'}, {'default:brick', 'technic:machine_casing', 'default:brick'}, - {'default:brick', 'default:copper_ingot', 'default:brick'}, + {'default:brick', 'technic:lv_cable0', 'default:brick'}, } }) |