Difference between revisions of "Turtle.digDown"
From ComputerCraft Wiki
(Corrected mapping from "Boolean" to "Boolean (type)") |
(wub wub) |
||
Line 9: | Line 9: | ||
|examples= | |examples= | ||
{{Example | {{Example | ||
− | |desc= | + | |desc=Attempts to dig the block below the turtle. |
|code=print(turtle.digDown()) | |code=print(turtle.digDown()) | ||
|output=true if the turtle could dig the block, false if it could not or no block present. | |output=true if the turtle could dig the block, false if it could not or no block present. |
Revision as of 12:08, 4 December 2012
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 | |
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. |