mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-15 04:30:29 +00:00
Merge pull request #1421 from zyxkad/patch-1
Fixed `turtle.detectUp` & `turtle.detectDown` doc
This commit is contained in:
commit
54b7366b2d
@ -372,7 +372,7 @@ public class TurtleAPI implements ILuaAPI {
|
||||
* Check if there is a solid block above the turtle. In this case, solid refers to any non-air or liquid block.
|
||||
*
|
||||
* @return The turtle command result.
|
||||
* @cc.treturn boolean If there is a solid block in front.
|
||||
* @cc.treturn boolean If there is a solid block above.
|
||||
*/
|
||||
@LuaFunction
|
||||
public final MethodResult detectUp() {
|
||||
@ -383,7 +383,7 @@ public class TurtleAPI implements ILuaAPI {
|
||||
* Check if there is a solid block below the turtle. In this case, solid refers to any non-air or liquid block.
|
||||
*
|
||||
* @return The turtle command result.
|
||||
* @cc.treturn boolean If there is a solid block in front.
|
||||
* @cc.treturn boolean If there is a solid block below.
|
||||
*/
|
||||
@LuaFunction
|
||||
public final MethodResult detectDown() {
|
||||
|
Loading…
Reference in New Issue
Block a user