diff options
author | Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com> | 2018-10-30 20:29:28 -0400 |
---|---|---|
committer | Ekdohibs <nathanael.courant@laposte.net> | 2018-11-11 09:54:20 +0100 |
commit | 44cb8df048e09b64214f59db73a3fd23cfe12e77 (patch) | |
tree | aaf4b25fda0f17ff2bb16a1ca62a4010e0598e78 /technic/machines/LV/geothermal.lua | |
parent | f702a6597ba86569ebd894a1698608f60418f634 (diff) |
use basic_materials mod where possible.
Diffstat (limited to 'technic/machines/LV/geothermal.lua')
-rw-r--r-- | technic/machines/LV/geothermal.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua index 27f4abc..d828f6d 100644 --- a/technic/machines/LV/geothermal.lua +++ b/technic/machines/LV/geothermal.lua @@ -11,9 +11,13 @@ minetest.register_craft({ output = 'technic:geothermal', recipe = { {'technic:granite', 'default:diamond', 'technic:granite'}, - {'technic:fine_copper_wire', 'technic:machine_casing', 'technic:fine_copper_wire'}, + {'basic_materials:copper_wire', 'technic:machine_casing', 'basic_materials:copper_wire'}, {'technic:granite', 'technic:lv_cable', 'technic:granite'}, - } + }, + replacements = { + {"basic_materials:copper_wire", "basic_materials:empty_spool"}, + {"basic_materials:copper_wire", "basic_materials:empty_spool"} + }, }) minetest.register_craftitem("technic:geothermal", { |