diff options
author | madmaxoft <github@xoft.cz> | 2013-09-25 09:15:48 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-09-25 09:15:48 +0200 |
commit | fe9be5b8bec4b68cb13e6b5370b00fdc26d06278 (patch) | |
tree | ede1a66f5df464de3b82df65c0da5b51cde3db64 | |
parent | APIDump: Updated cChunkDesc docs. (diff) | |
download | cuberite-fe9be5b8bec4b68cb13e6b5370b00fdc26d06278.tar cuberite-fe9be5b8bec4b68cb13e6b5370b00fdc26d06278.tar.gz cuberite-fe9be5b8bec4b68cb13e6b5370b00fdc26d06278.tar.bz2 cuberite-fe9be5b8bec4b68cb13e6b5370b00fdc26d06278.tar.lz cuberite-fe9be5b8bec4b68cb13e6b5370b00fdc26d06278.tar.xz cuberite-fe9be5b8bec4b68cb13e6b5370b00fdc26d06278.tar.zst cuberite-fe9be5b8bec4b68cb13e6b5370b00fdc26d06278.zip |
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 1d259b984..efe0fc43f 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -157,10 +157,13 @@ g_APIDesc = SetBlockMeta = { Params = "BlockX, BlockY, BlockZ, BlockMeta", Return = "", Notes = "Sets the block meta at the specified absolute coords" }, SetBlockSkyLight = { Params = "BlockX, BlockY, BlockZ, SkyLight", Return = "", Notes = "Sets the skylight at the specified absolute coords" }, SetBlockType = { Params = "BlockX, BlockY, BlockZ, BlockType", Return = "", Notes = "Sets the block type at the specified absolute coords" }, + SetBlockTypeMeta = { Params = "BlockX, BlockY, BlockZ, BlockType, BlockMeta", Return = "", Notes = "Sets the block type and meta at the specified absolute coords" }, + SetOrigin = { Params = "OriginX, OriginY, OriginZ", Return = "", Notes = "Resets the origin for the absolute coords. Only affects how absolute coords are translated into relative coords." }, SetRelBlockLight = { Params = "RelBlockX, RelBlockY, RelBlockZ, BlockLight", Return = "", Notes = "Sets the blocklight at the specified relative coords" }, SetRelBlockMeta = { Params = "RelBlockX, RelBlockY, RelBlockZ, BlockMeta", Return = "", Notes = "Sets the block meta at the specified relative coords" }, SetRelBlockSkyLight = { Params = "RelBlockX, RelBlockY, RelBlockZ, SkyLight", Return = "", Notes = "Sets the skylight at the specified relative coords" }, SetRelBlockType = { Params = "RelBlockX, RelBlockY, RelBlockZ, BlockType", Return = "", Notes = "Sets the block type at the specified relative coords" }, + SetRelBlockTypeMeta = { Params = "RelBlockX, RelBlockY, RelBlockZ, BlockType, BlockMeta", Return = "", Notes = "Sets the block type and meta at the specified relative coords" }, Write = { Params = "World, MinX, MinY, MinZ, DataTypes", Return = "bool", Notes = "Writes the area into World at the specified coords, returns true if successful" }, }, Constants = |