turtle.digDown
From ComputerCraft Wiki
Revision as of 05:28, 13 March 2012 by Uncreative Name (Talk | contribs) (Created page with "{{lowercase}} {{Function |name=turtle.digDown |args= |api=turtle |returns=boolean whether the turtle succeeded in digging. |addon=ComputerCraft |desc=Attempts to dig the b...")
| Attempts to dig the block below the turtle. | |
| Syntax | turtle.digDown() |
| Returns | boolean whether the turtle succeeded in digging. |
| Part of | ComputerCraft |
| API | turtle |
Examples
| Digs the block below the turtle. | |
| Code |
print(turtle.digDown()) |
| Output | true if the turtle could dig the block, false if it could not or no block present. |