diff options
author | madmaxoft <github@xoft.cz> | 2014-02-20 11:05:45 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-02-20 11:06:15 +0100 |
commit | 7b8ff7c9868e574f53d4740046db7c686bd978fb (patch) | |
tree | 151a77680b546f1ed4a5e676a8fc9c337ed75ed3 | |
parent | Fixed bindings for cBlockArea:Get(Rel)BlockTypeMeta(). (diff) | |
download | cuberite-7b8ff7c9868e574f53d4740046db7c686bd978fb.tar cuberite-7b8ff7c9868e574f53d4740046db7c686bd978fb.tar.gz cuberite-7b8ff7c9868e574f53d4740046db7c686bd978fb.tar.bz2 cuberite-7b8ff7c9868e574f53d4740046db7c686bd978fb.tar.lz cuberite-7b8ff7c9868e574f53d4740046db7c686bd978fb.tar.xz cuberite-7b8ff7c9868e574f53d4740046db7c686bd978fb.tar.zst cuberite-7b8ff7c9868e574f53d4740046db7c686bd978fb.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 2 |
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" }, |