diff options
author | Mattes D <github@xoft.cz> | 2014-12-17 08:38:23 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-17 08:38:23 +0100 |
commit | 4947880a5d75d827b23f2ea359d9219043a32fcd (patch) | |
tree | 7167c17bec4ce486238575f7c158384e5776aa20 /src/ChunkMap.cpp | |
parent | Updated Core. (diff) | |
parent | NULL -> nullptr (diff) | |
download | cuberite-4947880a5d75d827b23f2ea359d9219043a32fcd.tar cuberite-4947880a5d75d827b23f2ea359d9219043a32fcd.tar.gz cuberite-4947880a5d75d827b23f2ea359d9219043a32fcd.tar.bz2 cuberite-4947880a5d75d827b23f2ea359d9219043a32fcd.tar.lz cuberite-4947880a5d75d827b23f2ea359d9219043a32fcd.tar.xz cuberite-4947880a5d75d827b23f2ea359d9219043a32fcd.tar.zst cuberite-4947880a5d75d827b23f2ea359d9219043a32fcd.zip |
Diffstat (limited to 'src/ChunkMap.cpp')
-rw-r--r-- | src/ChunkMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp index 222a756b1..6aff3a754 100644 --- a/src/ChunkMap.cpp +++ b/src/ChunkMap.cpp @@ -3075,7 +3075,7 @@ void cChunkMap::cChunkLayer::UnloadUnusedChunks(void) ) { // The cChunk destructor calls our GetChunk() while removing its entities - // so we still need to be able to return the chunk. Therefore we first delete, then NULLify + // so we still need to be able to return the chunk. Therefore we first delete, then nullptrify // Doing otherwise results in bug http://forum.mc-server.org/showthread.php?tid=355 delete m_Chunks[i]; m_Chunks[i] = nullptr; |