summaryrefslogtreecommitdiffstats
path: root/source/cChunk.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-23 12:38:10 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-23 12:38:10 +0100
commit8f85b9c625e5e0fa4e2cb41a94246d11dc603052 (patch)
tree2fc7e2ee2f7bae46659e363aeff4856447aff6c9 /source/cChunk.h
parentAdded cmdline parameters "/cdg" and "/cdf" for crashdump flags "globals" and "full memory" (diff)
downloadcuberite-8f85b9c625e5e0fa4e2cb41a94246d11dc603052.tar
cuberite-8f85b9c625e5e0fa4e2cb41a94246d11dc603052.tar.gz
cuberite-8f85b9c625e5e0fa4e2cb41a94246d11dc603052.tar.bz2
cuberite-8f85b9c625e5e0fa4e2cb41a94246d11dc603052.tar.lz
cuberite-8f85b9c625e5e0fa4e2cb41a94246d11dc603052.tar.xz
cuberite-8f85b9c625e5e0fa4e2cb41a94246d11dc603052.tar.zst
cuberite-8f85b9c625e5e0fa4e2cb41a94246d11dc603052.zip
Diffstat (limited to '')
-rw-r--r--source/cChunk.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/cChunk.h b/source/cChunk.h
index 2fec4bcbe..8e0e9e627 100644
--- a/source/cChunk.h
+++ b/source/cChunk.h
@@ -178,7 +178,6 @@ public:
void UseBlockEntity(cPlayer * a_Player, int a_X, int a_Y, int a_Z); // [x, y, z] in world block coords
inline void RecalculateLighting() { m_bCalculateLighting = true; } // Recalculate lighting next tick
- inline void RecalculateHeightmap() { m_bCalculateHeightmap = true; } // Recalculate heightmap next tick
void SpreadLight(char* a_LightBuffer);
void CalculateLighting(); // Recalculate right now
void CalculateHeightmap();
@@ -250,7 +249,6 @@ private:
cBlockEntityList m_BlockEntities;
bool m_bCalculateLighting;
- bool m_bCalculateHeightmap;
int m_PosX, m_PosY, m_PosZ;
cWorld * m_World;