diff options
author | Zefram <zefram@fysh.org> | 2014-07-06 18:45:16 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-07 15:15:30 +0200 |
commit | 74d54eb0b47f530aacfc4a5688349ac37c73d495 (patch) | |
tree | c58e4def509a1412dd9c59cf19041244ad7f064b /technic/machines/LV/alloy_furnace.lua | |
parent | d9fc1569600f9b9108612ea97d38be731dfee2a7 (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'}, } }) |