
Turtle API does not include the ability to push/pull Items
z256z opened this issue ยท 5 comments
Going into lua and wrapping any turtle you see this:

add a chest or other compatible inventory to the network and use it as an in-between for moving things between the two turtles
turtles can be the target of a push and pull method even though they don't have the method on them
chest.pullItems("turtle_1", ...)
chest.pushItems("turtle_2", ...)
Wouldn't it make more sense to just add pull/push to turtles to avoid adding another inventory to the network? Seems a bit odd that a turtle has the perfect inventory for this and yet cannot pass items through itself...