mirror of
https://github.com/minetest-mods/technic.git
synced 2025-03-20 19:30:30 +01:00
14 lines
360 B
Lua
14 lines
360 B
Lua
minetest.register_alias("mv_cable", "technic:mv_cable")
|
|
|
|
minetest.register_craft({
|
|
output = 'technic:mv_cable 3',
|
|
recipe = {
|
|
{ 'technic:rubber', 'technic:rubber', 'technic:rubber' },
|
|
{ 'technic:lv_cable', 'technic:lv_cable', 'technic:lv_cable' },
|
|
{ 'technic:rubber', 'technic:rubber', 'technic:rubber' },
|
|
}
|
|
})
|
|
|
|
technic.register_cable("MV", 2.5 / 16)
|
|
|