summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-02-20 11:05:45 +0100
committerTheJumper <maximilian.springer@web.de>2014-02-23 19:50:51 +0100
commitea2420e8b4a4b176f96303d82d779844da6e9fb5 (patch)
tree151a77680b546f1ed4a5e676a8fc9c337ed75ed3
parentFixed bindings for cBlockArea:Get(Rel)BlockTypeMeta(). (diff)
downloadcuberite-ea2420e8b4a4b176f96303d82d779844da6e9fb5.tar
cuberite-ea2420e8b4a4b176f96303d82d779844da6e9fb5.tar.gz
cuberite-ea2420e8b4a4b176f96303d82d779844da6e9fb5.tar.bz2
cuberite-ea2420e8b4a4b176f96303d82d779844da6e9fb5.tar.lz
cuberite-ea2420e8b4a4b176f96303d82d779844da6e9fb5.tar.xz
cuberite-ea2420e8b4a4b176f96303d82d779844da6e9fb5.tar.zst
cuberite-ea2420e8b4a4b176f96303d82d779844da6e9fb5.zip
-rw-r--r--MCServer/Plugins/APIDump/APIDesc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua
index fd4b1d947..73bb5c7fb 100644
--- a/MCServer/Plugins/APIDump/APIDesc.lua
+++ b/MCServer/Plugins/APIDump/APIDesc.lua
@@ -118,7 +118,7 @@ g_APIDesc =
GetRelBlockMeta = { Params = "RelBlockX, RelBlockY, RelBlockZ", Return = "NIBBLETYPE", Notes = "Returns the block meta at the specified relative coords" },
GetRelBlockSkyLight = { Params = "RelBlockX, RelBlockY, RelBlockZ", Return = "NIBBLETYPE", Notes = "Returns the skylight at the specified relative coords" },
GetRelBlockType = { Params = "RelBlockX, RelBlockY, RelBlockZ", Return = "BLOCKTYPE", Notes = "Returns the block type at the specified relative coords" },
- GetRelBlockTypeMeta = { Params = "RelBlockX, RelBlockY, RelBlockZ", Return = "NIBBLETYPE", Notes = "Returns the block type and meta at the specified relative coords" },
+ GetRelBlockTypeMeta = { Params = "RelBlockX, RelBlockY, RelBlockZ", Return = "BLOCKTYPE, NIBBLETYPE", Notes = "Returns the block type and meta at the specified relative coords" },
GetSizeX = { Params = "", Return = "number", Notes = "Returns the size of the held data in the x-axis" },
GetSizeY = { Params = "", Return = "number", Notes = "Returns the size of the held data in the y-axis" },
GetSizeZ = { Params = "", Return = "number", Notes = "Returns the size of the held data in the z-axis" },