diff options
author | Zefram <zefram@fysh.org> | 2014-07-06 17:13:11 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-09 09:17:43 +0200 |
commit | e8a5a6652d1cab79838bcd0264b6272dbb31f3db (patch) | |
tree | 46b5f5308a540ba4a9ab513dc77f10e3b9b5727c /technic/machines/LV/geothermal.lua | |
parent | 430b310eb435c5c88c249dfcd827a838a21a6b35 (diff) |
Use machine casing in most machine recipes
Diffstat (limited to 'technic/machines/LV/geothermal.lua')
-rw-r--r-- | technic/machines/LV/geothermal.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua index 8c64708..8b9b42c 100644 --- a/technic/machines/LV/geothermal.lua +++ b/technic/machines/LV/geothermal.lua @@ -10,8 +10,8 @@ local S = technic.getter minetest.register_craft({ output = 'technic:geothermal', recipe = { - {'default:stone', 'default:stone', 'default:stone'}, - {'default:copper_ingot', 'default:diamond', 'default:copper_ingot'}, + {'default:stone', 'default:diamond', 'default:stone'}, + {'default:copper_ingot', 'technic:machine_casing', 'default:copper_ingot'}, {'default:stone', 'default:copper_ingot', 'default:stone'}, } }) |