diff options
author | ShadowNinja <shadowninja@minetest.net> | 2016-03-19 21:34:56 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2016-03-20 00:02:33 -0400 |
commit | 83c6494166fcebefc0cd6f6868032fb814c35ff5 (patch) | |
tree | 792fc0493e968e45b6c8bd75bf7a35256dc72378 /technic/machines/MV/cables.lua | |
parent | c5127f4b1bb1cfc80245e373c5fb02bed1238e97 (diff) |
Use connected nodeboxes for cables
Diffstat (limited to 'technic/machines/MV/cables.lua')
-rw-r--r-- | technic/machines/MV/cables.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/technic/machines/MV/cables.lua b/technic/machines/MV/cables.lua index b1a34c8..0c1f457 100644 --- a/technic/machines/MV/cables.lua +++ b/technic/machines/MV/cables.lua @@ -1,12 +1,12 @@ -minetest.register_alias("mv_cable", "technic:mv_cable0") +minetest.register_alias("mv_cable", "technic:mv_cable") minetest.register_craft({ - output = 'technic:mv_cable0 3', + output = 'technic:mv_cable 3', recipe ={ - {'technic:rubber', 'technic:rubber', 'technic:rubber'}, - {'technic:lv_cable0', 'technic:lv_cable0', 'technic:lv_cable0'}, - {'technic:rubber', 'technic:rubber', 'technic:rubber'}, + {'technic:rubber', 'technic:rubber', 'technic:rubber'}, + {'technic:lv_cable', 'technic:lv_cable', 'technic:lv_cable'}, + {'technic:rubber', 'technic:rubber', 'technic:rubber'}, } }) |