turtle.detect

When called, will return true if the block in front of the turtle is anything that is not air or liquid.

ExampleDetecting blocks
Detect if there is a block in front of the turtle.
Code
local result = turtle.detect()
if result then
  print("There is a block in front of the turtle!")
else
  print("There is no block in front of the turtle, only air or a liquid.")
end
Output
There is a block in front of the turtle!

turtle.detect
Function
Syntax
turtle.detect()
Returns boolean result
API turtle
Source CC:Tweaked (source)
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.