summaryrefslogtreecommitdiffstats
path: root/source/ChunkMap.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-11-11 16:06:31 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-11-11 16:06:31 +0100
commit934d3fe56549a3dce33bc565d27970dc29b88404 (patch)
tree67d872e1a096f88d1e97e733f6068eca2d2253bb /source/ChunkMap.h
parentSettings.ini is read only once on server start (diff)
downloadcuberite-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 '')
-rw-r--r--source/ChunkMap.h5
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);