1
0
Fork 0

Removed extra brackets

This commit is contained in:
Tiger Wang 2014-04-02 20:03:42 +01:00
parent ef48b30baa
commit 43af11ee38
1 changed files with 2 additions and 5 deletions

View File

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