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.
17 lines
525 B
Lua
17 lines
525 B
Lua
-- LV Electric Furnace
|
|
-- This is a faster version of the stone furnace which runs on EUs
|
|
|
|
-- FIXME: kpoppel I'd like to introduce an induction heating element here also
|
|
minetest.register_craft({
|
|
output = 'technic:electric_furnace',
|
|
recipe = {
|
|
{'default:cobble', 'default:cobble', 'default:cobble'},
|
|
{'default:cobble', 'technic:machine_casing', 'default:cobble'},
|
|
{'default:cobble', 'technic:lv_cable0', 'default:cobble'},
|
|
}
|
|
})
|
|
|
|
technic.register_electric_furnace({tier="LV", demand={300}, speed = 2})
|
|
|
|
|