summaryrefslogtreecommitdiffstats
path: root/src/ChunkMap.h
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2016-04-20 10:19:38 +0200
committerLogicParrot <LogicParrot@users.noreply.github.com>2016-04-23 10:48:16 +0200
commit51a7465ae1227149da63b922900d014b2aeed009 (patch)
tree0af46519d4cf5b46042a6e066e3ef434d99bfdb6 /src/ChunkMap.h
parentMerge pull request #3160 from LogicParrot/clientHandleThread (diff)
downloadcuberite-51a7465ae1227149da63b922900d014b2aeed009.tar
cuberite-51a7465ae1227149da63b922900d014b2aeed009.tar.gz
cuberite-51a7465ae1227149da63b922900d014b2aeed009.tar.bz2
cuberite-51a7465ae1227149da63b922900d014b2aeed009.tar.lz
cuberite-51a7465ae1227149da63b922900d014b2aeed009.tar.xz
cuberite-51a7465ae1227149da63b922900d014b2aeed009.tar.zst
cuberite-51a7465ae1227149da63b922900d014b2aeed009.zip
Diffstat (limited to 'src/ChunkMap.h')
-rw-r--r--src/ChunkMap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ChunkMap.h b/src/ChunkMap.h
index 4f49572c6..8df76bde6 100644
--- a/src/ChunkMap.h
+++ b/src/ChunkMap.h
@@ -12,7 +12,6 @@
-
class cWorld;
class cWorldInterface;
class cItem;
@@ -68,7 +67,6 @@ public:
static const int LAYER_SIZE = 32;
cChunkMap(cWorld * a_World);
- ~cChunkMap();
// Broadcast respective packets to all clients of the chunk where the event is taking place
// (Please keep these alpha-sorted)
@@ -424,6 +422,8 @@ private:
);
~cChunkLayer();
+ cChunkLayer(const cChunkLayer & a_That) = delete;
+
/** Always returns an assigned chunkptr, but the chunk needn't be valid (loaded / generated) - callers must check */
cChunkPtr GetChunk( int a_ChunkX, int a_ChunkZ);
@@ -506,7 +506,7 @@ private:
void RemoveLayer(cChunkLayer * a_Layer);
cCriticalSection m_CSLayers;
- cChunkLayerList m_Layers;
+ std::map<std::pair<int, int>, cChunkLayer> m_Layers;
cEvent m_evtChunkValid; // Set whenever any chunk becomes valid, via ChunkValidated()
cWorld * m_World;