diff options
author | madmaxoft <github@xoft.cz> | 2014-08-03 11:57:05 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-08-03 22:04:48 +0200 |
commit | 6ce61d1a6fd912c99284875a9052475e06fba432 (patch) | |
tree | b0eea911ec83c3b99997df7521f5302e670a2574 /src/WorldStorage | |
parent | Merge branch 'master' of https://github.com/mc-server/MCServer (diff) | |
download | cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.gz cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.bz2 cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.lz cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.xz cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.zst cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.zip |
Diffstat (limited to 'src/WorldStorage')
-rw-r--r-- | src/WorldStorage/WorldStorage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WorldStorage/WorldStorage.h b/src/WorldStorage/WorldStorage.h index 978a5b5d1..5d8aa4589 100644 --- a/src/WorldStorage/WorldStorage.h +++ b/src/WorldStorage/WorldStorage.h @@ -93,7 +93,7 @@ protected: sChunkLoad(int a_ChunkX, int a_ChunkY, int a_ChunkZ, bool a_Generate) : m_ChunkX(a_ChunkX), m_ChunkY(a_ChunkY), m_ChunkZ(a_ChunkZ), m_Generate(a_Generate) {} - bool operator==(const sChunkLoad other) const + bool operator ==(const sChunkLoad other) const { return this->m_ChunkX == other.m_ChunkX && this->m_ChunkY == other.m_ChunkY && |