diff options
author | Tommy Santerre <tommy.santerre@gmail.com> | 2015-02-14 23:11:38 +0100 |
---|---|---|
committer | Tommy Santerre <tommy.santerre@gmail.com> | 2015-03-20 01:32:17 +0100 |
commit | 3f6d823aa41f1a7641fb686cf24561b0aca95798 (patch) | |
tree | a695c90473a2de9ebd4fb91b9716b97d8ab929be /src/Blocks/BlockBigFlower.h | |
parent | APIDump: Added inheritance checking. (diff) | |
download | cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.gz cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.bz2 cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.lz cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.xz cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.zst cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.zip |
Diffstat (limited to 'src/Blocks/BlockBigFlower.h')
-rw-r--r-- | src/Blocks/BlockBigFlower.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Blocks/BlockBigFlower.h b/src/Blocks/BlockBigFlower.h index 5240ddf53..6c5cc6b68 100644 --- a/src/Blocks/BlockBigFlower.h +++ b/src/Blocks/BlockBigFlower.h @@ -81,7 +81,7 @@ public: virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override { - return ((a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) != E_BLOCK_AIR) && (a_RelY < cChunkDef::Height) && ((a_Chunk.GetBlock(a_RelX, a_RelY + 1, a_RelZ) == E_BLOCK_AIR) || (a_Chunk.GetBlock(a_RelX, a_RelY + 1, a_RelZ) == E_BLOCK_BIG_FLOWER))); + return ((a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) != E_BLOCK_AIR) && (a_RelY < cChunkDef::Height - 1) && ((a_Chunk.GetBlock(a_RelX, a_RelY + 1, a_RelZ) == E_BLOCK_AIR) || (a_Chunk.GetBlock(a_RelX, a_RelY + 1, a_RelZ) == E_BLOCK_BIG_FLOWER))); } |