Difference between revisions of "Turtle.digDown"
From ComputerCraft Wiki
(wub wub) |
Apemanzilla (Talk | contribs) m (Fix formatting) |
||
| Line 4: | Line 4: | ||
|args= | |args= | ||
|api=turtle | |api=turtle | ||
| − | |returns= | + | |returns={{Type|boolean}} whether the turtle succeeded in digging. |
|addon=ComputerCraft | |addon=ComputerCraft | ||
|desc=Attempts to dig the block below the turtle. | |desc=Attempts to dig the block below the turtle. | ||
Revision as of 18:28, 4 June 2014
| 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
| Attempts to dig 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. |