turtle.digDown

From ComputerCraft Wiki
Revision as of 12:08, 4 December 2012 by 184.171.168.202 (Talk) (wub wub)

Jump to: navigation, search


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.
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.