1
0
Fork 0

Added parenthasies

This commit is contained in:
worktycho 2014-07-13 16:07:35 +01:00
parent 132b367316
commit 4315deb90b
1 changed files with 1 additions and 1 deletions

View File

@ -1530,7 +1530,7 @@ void cChunkMap::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer * a_Player)
cCSLock Lock(m_CSLayers);
cChunkPtr Chunk = GetChunk(ChunkX, ZERO_CHUNK_Y, ChunkZ);
if (Chunk != NULL && Chunk->IsValid())
if ((Chunk != NULL) && (Chunk->IsValid()))
{
Chunk->SendBlockTo(a_X, a_Y, a_Z, a_Player->GetClientHandle());
}