mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 15:00:45 +01:00
15 lines
361 B
Lua
15 lines
361 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)
|
|
|