Difference between revisions of "Turtle.digDown"
From ComputerCraft Wiki
(Added second return value) |
(Adding "see also", and a phrase from turtle.dig.) |
||
Line 6: | Line 6: | ||
|returns={{Type|boolean}} whether the turtle succeeded in digging, {{type|string}} error message | |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. If successful, [[Turtle.suck|suck()]] is automatically called, placing the item in turtle inventory in the selected slot if possible (block type matches and the slot is not a full stack yet), or in the next available slot. |
|examples= | |examples= | ||
{{Example | {{Example | ||
Line 14: | Line 14: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | ==See also== | ||
+ | *[[turtle.dig]] | ||
+ | *[[turtle.digUp]] | ||
[[Category:Lua_Core_Functions]] | [[Category:Lua_Core_Functions]] |
Revision as of 21:17, 22 April 2015
Function turtle.digDown | |
Attempts to dig the block below the turtle. If successful, suck() is automatically called, placing the item in turtle inventory in the selected slot if possible (block type matches and the slot is not a full stack yet), or in the next available slot. | |
Syntax | turtle.digDown() |
Returns | boolean whether the turtle succeeded in digging, string error message |
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. |