Removed extra brackets
This commit is contained in:
parent
ef48b30baa
commit
43af11ee38
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "BlockHandler.h"
|
#include "BlockHandler.h"
|
||||||
@ -94,11 +93,9 @@ 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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user