File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
technic/machines/register Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ local dirtab = {
92
92
93
93
local tube = {
94
94
insert_object = function (pos , node , stack , direction )
95
- print (minetest .pos_to_string (direction ), dirtab [direction .x + 2 + (direction .z + 2 )* 2 ], node .param2 )
95
+ -- print(minetest.pos_to_string(direction), dirtab[direction.x+2+(direction.z+2)*2], node.param2)
96
96
if direction .y == 1
97
97
or (direction .y == 0 and dirtab [direction .x + 2 + (direction .z + 2 )* 2 ] == node .param2 ) then
98
98
return stack
@@ -106,7 +106,7 @@ local tube = {
106
106
end
107
107
end ,
108
108
can_insert = function (pos , node , stack , direction )
109
- print (minetest .pos_to_string (direction ), dirtab [direction .x + 2 + (direction .z + 2 )* 2 ], node .param2 )
109
+ -- print(minetest.pos_to_string(direction), dirtab[direction.x+2+(direction.z+2)*2], node.param2)
110
110
if direction .y == 1
111
111
or (direction .y == 0 and dirtab [direction .x + 2 + (direction .z + 2 )* 2 ] == node .param2 ) then
112
112
return false
You can’t perform that action at this time.
0 commit comments