13 lines
250 B
Lua
13 lines
250 B
Lua
|
|
||
|
minetest.register_alias("lv_cable", "technic:lv_cable0")
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = 'technic:lv_cable0 6',
|
||
|
recipe = {
|
||
|
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||
|
}
|
||
|
})
|
||
|
|
||
|
technic.register_cable("LV", 2/16)
|
||
|
|