Difference between revisions of "Turtle.digDown"

From ComputerCraft Wiki
Jump to: navigation, search
m (Fix formatting)
(Added second return value)
Line 4: Line 4:
 
|args=
 
|args=
 
|api=turtle
 
|api=turtle
|returns={{Type|boolean}} whether the turtle succeeded in digging.
+
|returns={{Type|boolean}} whether the turtle succeeded in digging, {{type|string}} error message
 
|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 00:47, 19 December 2014


Grid Redstone.png  Function turtle.digDown
Attempts to dig the block below the turtle.
Syntax turtle.digDown()
Returns boolean whether the turtle succeeded in digging, string error message
Part of ComputerCraft
API turtle

Examples

Grid paper.png  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.