diff options
author | madmaxoft <github@xoft.cz> | 2014-02-20 11:05:45 +0100 |
---|---|---|
committer | TheJumper <maximilian.springer@web.de> | 2014-02-23 19:50:51 +0100 |
commit | ea2420e8b4a4b176f96303d82d779844da6e9fb5 (patch) | |
tree | 151a77680b546f1ed4a5e676a8fc9c337ed75ed3 /MCServer/Plugins/APIDump/APIDesc.lua | |
parent | Fixed bindings for cBlockArea:Get(Rel)BlockTypeMeta(). (diff) | |
download | cuberite-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 |
Diffstat (limited to 'MCServer/Plugins/APIDump/APIDesc.lua')
-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" }, |