Removed extra brackets

This commit is contained in:
Tiger Wang 2014-04-02 20:03:42 +01:00
parent ef48b30baa
commit 43af11ee38

View File

@ -1,4 +1,3 @@
#pragma once #pragma once
#include "BlockHandler.h" #include "BlockHandler.h"
@ -94,10 +93,8 @@ public:
BLOCKTYPE BlockType; BLOCKTYPE BlockType;
if ( if (
((a_RelY + y < 0) || (a_RelY + y > cChunkDef::Height)) || ((a_RelY + y < 0) || (a_RelY + y > cChunkDef::Height)) ||
( !a_Chunk.UnboundedRelGetBlockType(a_RelX + x, a_RelY + y, a_RelZ + z, BlockType) ||
!a_Chunk.UnboundedRelGetBlockType(a_RelX + x, a_RelY + y, a_RelZ + z, BlockType) || !cFireSimulator::IsFuel(BlockType)
!cFireSimulator::IsFuel(BlockType)
)
) )
{ {
return false; return false;