diff options
Diffstat (limited to 'source/cEntity.cpp')
-rw-r--r-- | source/cEntity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cEntity.cpp b/source/cEntity.cpp index 25d10fab4..00faf5baa 100644 --- a/source/cEntity.cpp +++ b/source/cEntity.cpp @@ -96,7 +96,7 @@ void cEntity::WrapRotation() void cEntity::MoveToCorrectChunk(bool a_bIgnoreOldChunk)
{
- assert(m_World != NULL); // Entity needs a world to move to a chunk
+ ASSERT(m_World != NULL); // Entity needs a world to move to a chunk
if( !m_World ) return;
int ChunkX = 0, ChunkY = 0, ChunkZ = 0;
|