summaryrefslogtreecommitdiffstats
path: root/source/cChunk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/cChunk.cpp')
-rw-r--r--source/cChunk.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/cChunk.cpp b/source/cChunk.cpp
index a011bde51..95f0612c3 100644
--- a/source/cChunk.cpp
+++ b/source/cChunk.cpp
@@ -69,7 +69,6 @@ sSetBlock::sSetBlock( int a_X, int a_Y, int a_Z, char a_BlockType, char a_BlockM
cChunk::cChunk(int a_X, int a_Y, int a_Z, cChunkMap * a_ChunkMap, cWorld * a_World)
: m_bCalculateLighting( false )
- , m_bCalculateHeightmap( false )
, m_PosX( a_X )
, m_PosY( a_Y )
, m_PosZ( a_Z )
@@ -310,10 +309,6 @@ void cChunk::Tick(float a_Dt, MTRand & a_TickRandom)
{
CalculateLighting();
}
- if (m_bCalculateHeightmap)
- {
- CalculateHeightmap();
- }
cCSLock Lock(m_CSBlockLists);
unsigned int PendingSendBlocks = m_PendingSendBlocks.size();
@@ -611,7 +606,6 @@ void cChunk::CreateBlockEntities(void)
void cChunk::CalculateHeightmap()
{
- m_bCalculateHeightmap = false;
for (int x = 0; x < 16; x++)
{
for (int z = 0; z < 16; z++)