hdastwb
2013-07-21 2e4d983be7592af81b49f95895acf064b8ec38a2
added connect_sides to appropriate tube tables
4 files modified
12 ■■■■ changed files
technic/machines/mv/alloy_furnace.lua 2 ●●●●● patch | view | raw | blame | history
technic/machines/mv/electric_furnace.lua 2 ●●●●● patch | view | raw | blame | history
technic/machines/mv/grinder.lua 2 ●●●●● patch | view | raw | blame | history
technic_chests/chest_commons.lua 6 ●●●●● patch | view | raw | blame | history
technic/machines/mv/alloy_furnace.lua
@@ -36,6 +36,7 @@
            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 @@
            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(),
technic/machines/mv/electric_furnace.lua
@@ -41,6 +41,7 @@
            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 @@
            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(),
technic/machines/mv/grinder.lua
@@ -41,6 +41,7 @@
            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 @@
                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(),
technic_chests/chest_commons.lua
@@ -11,8 +11,10 @@
                    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()