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/geothermal.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/geothermal.lua')
-rw-r--r-- | technic/machines/LV/geothermal.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua index 8b9b42c..489d764 100644 --- a/technic/machines/LV/geothermal.lua +++ b/technic/machines/LV/geothermal.lua @@ -12,7 +12,7 @@ minetest.register_craft({ recipe = { {'default:stone', 'default:diamond', 'default:stone'}, {'default:copper_ingot', 'technic:machine_casing', 'default:copper_ingot'}, - {'default:stone', 'default:copper_ingot', 'default:stone'}, + {'default:stone', 'technic:lv_cable0', 'default:stone'}, } }) |