summaryrefslogtreecommitdiffstats
path: root/src/ChunkMap.h
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2016-04-24 16:40:37 +0200
committerLogicParrot <LogicParrot@users.noreply.github.com>2016-04-24 16:40:37 +0200
commitb48b61eca489588d37d115009c68dcffdc68fe77 (patch)
tree461274297825de3958ee63cd236e319acd652bab /src/ChunkMap.h
parentMerge pull request #3153 from LogicParrot/chunkLayer (diff)
downloadcuberite-b48b61eca489588d37d115009c68dcffdc68fe77.tar
cuberite-b48b61eca489588d37d115009c68dcffdc68fe77.tar.gz
cuberite-b48b61eca489588d37d115009c68dcffdc68fe77.tar.bz2
cuberite-b48b61eca489588d37d115009c68dcffdc68fe77.tar.lz
cuberite-b48b61eca489588d37d115009c68dcffdc68fe77.tar.xz
cuberite-b48b61eca489588d37d115009c68dcffdc68fe77.tar.zst
cuberite-b48b61eca489588d37d115009c68dcffdc68fe77.zip
Diffstat (limited to '')
-rw-r--r--src/ChunkMap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ChunkMap.h b/src/ChunkMap.h
index 8df76bde6..4f49572c6 100644
--- a/src/ChunkMap.h
+++ b/src/ChunkMap.h
@@ -12,6 +12,7 @@
+
class cWorld;
class cWorldInterface;
class cItem;
@@ -67,6 +68,7 @@ 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)
@@ -422,8 +424,6 @@ 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;
- std::map<std::pair<int, int>, cChunkLayer> m_Layers;
+ cChunkLayerList m_Layers;
cEvent m_evtChunkValid; // Set whenever any chunk becomes valid, via ChunkValidated()
cWorld * m_World;