added connect_sides to appropriate tube tables
authorhdastwb <hdastwb@hdastwb.heliohost.org>
Sun, 21 Jul 2013 21:15:03 +0000 (17:15 -0400)
committerhdastwb <hdastwb@hdastwb.heliohost.org>
Sun, 21 Jul 2013 21:15:03 +0000 (17:15 -0400)
technic/machines/mv/alloy_furnace.lua
technic/machines/mv/electric_furnace.lua
technic/machines/mv/grinder.lua
technic_chests/chest_commons.lua

index cadcb67b3048d39db15fe8ec5c8ffeab5110492a..b7a837fa77feb14ac8a010667b9171d692dc9f14 100644 (file)
@@ -36,6 +36,7 @@ minetest.register_node(
                        local inv=meta:get_inventory()
                        return inv:room_for_item("src",stack)
                     end,
+               connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
        },
     legacy_facedir_simple = true,
     sounds = default.node_sound_stone_defaults(),
@@ -82,6 +83,7 @@ minetest.register_node(
                        local inv=meta:get_inventory()
                        return inv:room_for_item("src",stack)
                     end,
+               connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
        },
     legacy_facedir_simple = true,
     sounds = default.node_sound_stone_defaults(),
index 7f205b5e56d7827029248e968720c70c34b52f54..a125d4b3470a8b83dff6888a02173cb121480d36 100644 (file)
@@ -41,6 +41,7 @@ minetest.register_node(
                        local inv=meta:get_inventory()
                        return inv:room_for_item("src",stack)
                     end,
+               connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
        },
     legacy_facedir_simple = true,
     sounds = default.node_sound_stone_defaults(),
@@ -87,6 +88,7 @@ minetest.register_node(
                        local inv=meta:get_inventory()
                        return inv:room_for_item("src",stack)
                     end,
+               connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
        },
     legacy_facedir_simple = true,
     sounds = default.node_sound_stone_defaults(),
index a8ba7acc300a71740b57fb5042997a3c3f3b3373..e99379410ce5d2b9e55daeba2986722a53c8b7af 100644 (file)
@@ -41,6 +41,7 @@ minetest.register_node(
                        local inv=meta:get_inventory()
                        return inv:room_for_item("src",stack)
                end,
+               connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
        },
        legacy_facedir_simple = true,
        sounds = default.node_sound_wood_defaults(),
@@ -86,6 +87,7 @@ minetest.register_node(
                                local inv=meta:get_inventory()
                                return inv:room_for_item("src",stack)
                        end,
+                       connect_sides = {left=1, right=1, back=1, top=1, bottom=1},
                },
                legacy_facedir_simple = true,
                sounds = default.node_sound_wood_defaults(),
index 778649688add2f877bd6aa0f7537bd1151c54355..e6438bf832c104329287b895414dd5d803e08e9a 100644 (file)
@@ -11,8 +11,10 @@ tubes_properties = {insert_object=function(pos,node,stack,direction)
                                        local inv=meta:get_inventory()
                                        return inv:room_for_item("main",stack)
                                end,
-                               input_inventory="main"}
-                               
+                               input_inventory="main",
+                               connect_sides = {left=1, right=1, front=1, back=1, top=1, bottom=1},
+}
+
 chest_can_dig = function(pos,player)
 local meta = minetest.env:get_meta(pos);
 local inv = meta:get_inventory()