diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-04-02 21:03:42 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-04-02 21:03:42 +0200 |
commit | 43af11ee3808fa9836fc9467cacd73b78118c3c2 (patch) | |
tree | 233fd3771c431cc4e40edbbecd3e8eba4dad6a38 | |
parent | Final realisation of suggestions (diff) | |
download | cuberite-43af11ee3808fa9836fc9467cacd73b78118c3c2.tar cuberite-43af11ee3808fa9836fc9467cacd73b78118c3c2.tar.gz cuberite-43af11ee3808fa9836fc9467cacd73b78118c3c2.tar.bz2 cuberite-43af11ee3808fa9836fc9467cacd73b78118c3c2.tar.lz cuberite-43af11ee3808fa9836fc9467cacd73b78118c3c2.tar.xz cuberite-43af11ee3808fa9836fc9467cacd73b78118c3c2.tar.zst cuberite-43af11ee3808fa9836fc9467cacd73b78118c3c2.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockFluid.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Blocks/BlockFluid.h b/src/Blocks/BlockFluid.h index 1200997ff..1f0c3833c 100644 --- a/src/Blocks/BlockFluid.h +++ b/src/Blocks/BlockFluid.h @@ -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; |