Posted 13 April 2014 - 02:58 PM
After using turtle.craft() A LOT of times(I have a turtle picking up water and crafting it into fresh water) I encountered that the command turtle.craft() completely removes itself, to the point that the only way of getting it back is by restarting the game. Restarting the turtle does not work. Possible causes for this is either it crafting alot of times or the fact that I went to the nether while it was going so it might have gotten unloaded while turtle.craft()ing.
Code:
EDIT: What I mean by it removing itself is that it returns "attempt to call nil"
Code:
while true do
turtle.select(1)
turtle.placeDown()
turtle.craft()
turtle.select(2)
while not turtle.drop() do end
end
EDIT: What I mean by it removing itself is that it returns "attempt to call nil"
Edited on 13 April 2014 - 01:02 PM