summaryrefslogtreecommitdiffstats
path: root/source/Chunk.cpp
diff options
context:
space:
mode:
authormgueydan <gueydan.mathieuÃ@gmail.com>2013-09-08 12:20:19 +0200
committermgueydan <gueydan.mathieuÃ@gmail.com>2013-09-08 12:20:19 +0200
commit5846be9400d26d198ddc3884a8e02c405748c6ad (patch)
tree86fc53b2a3149d4c8b775c3110f541be0a35cfe4 /source/Chunk.cpp
parentremoving an assert + correcting a distance calculation bug (diff)
downloadcuberite-5846be9400d26d198ddc3884a8e02c405748c6ad.tar
cuberite-5846be9400d26d198ddc3884a8e02c405748c6ad.tar.gz
cuberite-5846be9400d26d198ddc3884a8e02c405748c6ad.tar.bz2
cuberite-5846be9400d26d198ddc3884a8e02c405748c6ad.tar.lz
cuberite-5846be9400d26d198ddc3884a8e02c405748c6ad.tar.xz
cuberite-5846be9400d26d198ddc3884a8e02c405748c6ad.tar.zst
cuberite-5846be9400d26d198ddc3884a8e02c405748c6ad.zip
Diffstat (limited to '')
-rw-r--r--source/Chunk.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Chunk.cpp b/source/Chunk.cpp
index a77f10609..01cb13c4d 100644
--- a/source/Chunk.cpp
+++ b/source/Chunk.cpp
@@ -471,7 +471,7 @@ void cChunk::CollectMobCensus(cMobCensus& toFill)
void cChunk::getThreeRandomNumber(int& a_X, int& a_Y, int& a_Z,int a_MaxX, int a_MaxY, int a_MaxZ)
{
- assert(a_MaxX * a_MaxY * a_MaxZ * 8 < 0x00ffffff);
+ ASSERT(a_MaxX * a_MaxY * a_MaxZ * 8 < 0x00ffffff);
int Random = m_World->GetTickRandomNumber(0x00ffffff);
a_X = Random % (a_MaxX * 2);
a_Y = (Random / (a_MaxX * 2)) % (a_MaxY * 2);
@@ -523,8 +523,8 @@ void cChunk::SpawnMobs(cMobSpawner& a_MobSpawner)
Try_Y += Center_Y;
Try_Z += Center_Z;
- assert(Try_Y > 0);
- assert(Try_Y < cChunkDef::Height-1);
+ ASSERT(Try_Y > 0);
+ ASSERT(Try_Y < cChunkDef::Height-1);
BLOCKTYPE BlockType;
NIBBLETYPE BlockMeta;