turtle.digDown
From ComputerCraft Wiki
Revision as of 13:45, 30 November 2012 by AfterLifeLochie (Talk | contribs) (Corrected mapping from "Boolean" to "Boolean (type)")
Function turtle.digDown | |
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
Example | |
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. |