68ea0acbd0
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.
15 lines
478 B
Lua
15 lines
478 B
Lua
-- LV Alloy furnace
|
|
|
|
-- FIXME: kpoppel: I'd like to introduce an induction heating element here...
|
|
minetest.register_craft({
|
|
output = 'technic:lv_alloy_furnace',
|
|
recipe = {
|
|
{'default:brick', 'default:brick', 'default:brick'},
|
|
{'default:brick', 'technic:machine_casing', 'default:brick'},
|
|
{'default:brick', 'technic:lv_cable0', 'default:brick'},
|
|
}
|
|
})
|
|
|
|
technic.register_alloy_furnace({tier = "LV", speed = 1, demand = {300}})
|
|
|