diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-11-11 16:06:31 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-11-11 16:06:31 +0100 |
commit | 934d3fe56549a3dce33bc565d27970dc29b88404 (patch) | |
tree | 67d872e1a096f88d1e97e733f6068eca2d2253bb /source/ChunkMap.h | |
parent | Settings.ini is read only once on server start (diff) | |
download | cuberite-934d3fe56549a3dce33bc565d27970dc29b88404.tar cuberite-934d3fe56549a3dce33bc565d27970dc29b88404.tar.gz cuberite-934d3fe56549a3dce33bc565d27970dc29b88404.tar.bz2 cuberite-934d3fe56549a3dce33bc565d27970dc29b88404.tar.lz cuberite-934d3fe56549a3dce33bc565d27970dc29b88404.tar.xz cuberite-934d3fe56549a3dce33bc565d27970dc29b88404.tar.zst cuberite-934d3fe56549a3dce33bc565d27970dc29b88404.zip |
Diffstat (limited to 'source/ChunkMap.h')
-rw-r--r-- | source/ChunkMap.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source/ChunkMap.h b/source/ChunkMap.h index 15e786604..38d16d0c4 100644 --- a/source/ChunkMap.h +++ b/source/ChunkMap.h @@ -126,12 +126,9 @@ public: bool GetChunkData (int a_ChunkX, int a_ChunkY, int a_ChunkZ, cChunkDataCallback & a_Callback); - /// Gets the chunk's blocks, only the block types + /// Copies the chunk's blocktypes into a_Blocks; returns true if successful bool GetChunkBlockTypes (int a_ChunkX, int a_ChunkY, int a_ChunkZ, BLOCKTYPE * a_Blocks); - /// Gets the chunk's block data, the entire 4 arrays (Types, Meta, Light, SkyLight) - bool GetChunkBlockData (int a_ChunkX, int a_ChunkY, int a_ChunkZ, BLOCKTYPE * a_BlockData); - bool IsChunkValid (int a_ChunkX, int a_ChunkY, int a_ChunkZ); bool HasChunkAnyClients (int a_ChunkX, int a_ChunkY, int a_ChunkZ); int GetHeight (int a_BlockX, int a_BlockZ); |