Removed extra brackets
This commit is contained in:
parent
ef48b30baa
commit
43af11ee38
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user