Difference between revisions of "Turtle.digUp"

From ComputerCraft Wiki
Jump to: navigation, search
(Added second return value)
(Adding "see also", and a phrase from turtle.dig.)
Line 5: Line 5:
 
|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 above of the turtle.
+
|desc=Attempts to dig the block above of 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 13: Line 13:
 
}}
 
}}
 
}}
 
}}
 +
 +
==See also==
 +
*[[turtle.dig]]
 +
*[[turtle.digDown]]
  
 
[[Category:Lua_Core_Functions]]
 
[[Category:Lua_Core_Functions]]

Revision as of 21:17, 22 April 2015


Grid Redstone.png  Function turtle.digUp
Attempts to dig the block above of 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.digUp()
Returns boolean whether the turtle succeeded in digging, string error message
Part of ComputerCraft
API turtle

Examples

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


See also