Difference between revisions of "Turtle.digUp"
From ComputerCraft Wiki
MKlegoman357 (Talk | contribs) m (Fixed) |
(Added second return value) |
||
Line 3: | Line 3: | ||
|name=turtle.digUp | |name=turtle.digUp | ||
|api=turtle | |api=turtle | ||
− | |returns={{ | + | |returns={{Type|boolean}} whether the turtle succeeded in digging, {{type|string}} error message |
|addon=ComputerCraft | |addon=ComputerCraft | ||
|desc=Attempts to dig the block above of the turtle. | |desc=Attempts to dig the block above of the turtle. |
Revision as of 00:47, 19 December 2014
Function turtle.digUp | |
Attempts to dig the block above of the turtle. | |
Syntax | turtle.digUp() |
Returns | boolean whether the turtle succeeded in digging, string error message |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Digs the block above the turtle. | |
Code |
print(turtle.digUp()) |
Output | true if the turtle could dig the block, false if it could not or no block present. |