diff options
author | hdastwb <hdastwb@hdastwb.heliohost.org> | 2013-07-21 17:15:03 -0400 |
---|---|---|
committer | hdastwb <hdastwb@hdastwb.heliohost.org> | 2013-07-21 17:15:03 -0400 |
commit | 2e4d983be7592af81b49f95895acf064b8ec38a2 (patch) | |
tree | 6b5125ef3d2a06daf3c9c9cd9eee6bad34d3e374 /technic_chests | |
parent | e43e6cc1b0f4de3107179f6b86f23db60f492d1d (diff) |
added connect_sides to appropriate tube tables
Diffstat (limited to 'technic_chests')
-rw-r--r-- | technic_chests/chest_commons.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/technic_chests/chest_commons.lua b/technic_chests/chest_commons.lua index 7786496..e6438bf 100644 --- a/technic_chests/chest_commons.lua +++ b/technic_chests/chest_commons.lua @@ -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() |