1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-10-04 17:12:23 +00:00

Add example to turtle.inspect

A pretty common but non-trivial API, so worth having something. Even if
not perfect.
This commit is contained in:
Jonathan Coates
2021-05-14 18:06:51 +01:00
committed by Jummit
parent e40fb67b50
commit 41aa8fa163

View File

@@ -660,6 +660,18 @@ public class TurtleAPI implements ILuaAPI {
* @return The turtle command result.
* @cc.treturn boolean Whether there is a block in front of the turtle.
* @cc.treturn table|string Information about the block in front, or a message explaining that there is no block.
* @cc.usage <pre>{@code
* local has_block, data = turtle.inspect()
* if has_block then
* print(textutils.serialize(data))
* -- {
* -- name = "minecraft:oak_log",
* -- state = { axis = "x" },
* -- tags = { ["minecraft:logs"] = true, ... },
* -- }
* else
* print("No block in front of the turtle")
* end}</pre>
*/
@LuaFunction
public final MethodResult inspect() {