diff options
author | Zefram <zefram@fysh.org> | 2014-07-07 21:48:38 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-09 09:17:44 +0200 |
commit | 5e4a87b92599aa0fc9a56081209c930d08a2c3bd (patch) | |
tree | b149e047640d88ceabd917945cbc8c00d3bcbeb7 /technic/machines/LV/geothermal.lua | |
parent | 5e7c47a619167dd5a699fceefe2cb5fddc0057d9 (diff) |
Rework some recipes to use more varied ingredients
Diffstat (limited to 'technic/machines/LV/geothermal.lua')
-rw-r--r-- | technic/machines/LV/geothermal.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua index 489d764..c253c6c 100644 --- a/technic/machines/LV/geothermal.lua +++ b/technic/machines/LV/geothermal.lua @@ -10,9 +10,9 @@ local S = technic.getter minetest.register_craft({ output = 'technic:geothermal', recipe = { - {'default:stone', 'default:diamond', 'default:stone'}, - {'default:copper_ingot', 'technic:machine_casing', 'default:copper_ingot'}, - {'default:stone', 'technic:lv_cable0', 'default:stone'}, + {'technic:granite', 'default:diamond', 'technic:granite'}, + {'technic:fine_copper_wire', 'technic:machine_casing', 'technic:fine_copper_wire'}, + {'technic:granite', 'technic:lv_cable0', 'technic:granite'}, } }) |