diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-20 00:00:00 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-20 00:00:00 +0100 |
commit | 0b616909e3472a4360e22d6b01749ee44092e967 (patch) | |
tree | 6a70857aa2839acd133b77fcc225af6828cb8f39 /source/cChunkMap.cpp | |
parent | Fixed assertion bug in NamedEntitySpawn packet, it used to assert when item ID is 0, but now 0 is allowed (diff) | |
download | cuberite-0b616909e3472a4360e22d6b01749ee44092e967.tar cuberite-0b616909e3472a4360e22d6b01749ee44092e967.tar.gz cuberite-0b616909e3472a4360e22d6b01749ee44092e967.tar.bz2 cuberite-0b616909e3472a4360e22d6b01749ee44092e967.tar.lz cuberite-0b616909e3472a4360e22d6b01749ee44092e967.tar.xz cuberite-0b616909e3472a4360e22d6b01749ee44092e967.tar.zst cuberite-0b616909e3472a4360e22d6b01749ee44092e967.zip |
Diffstat (limited to 'source/cChunkMap.cpp')
-rw-r--r-- | source/cChunkMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cChunkMap.cpp b/source/cChunkMap.cpp index 0657f51d3..10577dc6f 100644 --- a/source/cChunkMap.cpp +++ b/source/cChunkMap.cpp @@ -466,7 +466,7 @@ cChunkPtr cChunkMap::cChunkLayer::GetChunk( int a_ChunkX, int a_ChunkY, int a_Ch if (!((LocalX < LAYER_SIZE) && (LocalZ < LAYER_SIZE) && (LocalX > -1) && (LocalZ > -1)))
{
- assert(!"Asking a cChunkLayer for a chunk that doesn't belong to it!");
+ ASSERT(!"Asking a cChunkLayer for a chunk that doesn't belong to it!");
return cChunkPtr();
}
|