for i = 1,16 do
turtle.select(i)
turtle.drop()
end
print("dropped")
turtle.select(1)
It worked fine if I separate it into its own program, but the turtle ignores the turtle.drop() command completely in my code. I don't have anything I know of that could interfere with it. What could interfere with the drop command.












