turtle.digUp
From ComputerCraft Wiki
Revision as of 05:27, 13 March 2012 by Uncreative Name (Talk | contribs) (Created page with "{{lowercase}} {{Function |name=turtle.digUp |args= |api=turtle |returns=boolean whether the turtle succeeded in digging. |addon=ComputerCraft |desc=Attempts to dig the blo...")
Function turtle.digUp | |
Attempts to dig the block above of the turtle. | |
Syntax | turtle.digUp() |
Returns | boolean whether the turtle succeeded in digging. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
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. |