turtle.digUp
From ComputerCraft Wiki
Revision as of 21:17, 22 April 2015 by MisterSanderson (Talk | contribs) (Adding "see also", and a phrase from turtle.dig.)
![]() | |
Attempts to dig the block above of the turtle. If successful, suck() is automatically called, placing the item in turtle inventory in the selected slot if possible (block type matches and the slot is not a full stack yet), or in the next available slot. | |
Syntax | turtle.digUp() |
Returns | boolean whether the turtle succeeded in digging, string error message |
Part of | ComputerCraft |
API | turtle |
Examples
![]() | |
Digs the block above the turtle. | |
Code |
print(turtle.digUp()) |
Output | true if the turtle could dig the block, false if it could not or no block present. |