diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-04-03 21:53:18 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-04-03 21:53:18 +0200 |
commit | 0fb40da8776482a90a86a46760ae8c9560963a73 (patch) | |
tree | 546a10ad4bc8848f914f59757a53260cd17f474b | |
parent | Add "a_RelY < cChunkDef::Height" to BlockBigFlower (diff) | |
download | cuberite-0fb40da8776482a90a86a46760ae8c9560963a73.tar cuberite-0fb40da8776482a90a86a46760ae8c9560963a73.tar.gz cuberite-0fb40da8776482a90a86a46760ae8c9560963a73.tar.bz2 cuberite-0fb40da8776482a90a86a46760ae8c9560963a73.tar.lz cuberite-0fb40da8776482a90a86a46760ae8c9560963a73.tar.xz cuberite-0fb40da8776482a90a86a46760ae8c9560963a73.tar.zst cuberite-0fb40da8776482a90a86a46760ae8c9560963a73.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockBigFlower.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Blocks/BlockBigFlower.h b/src/Blocks/BlockBigFlower.h index 98d6502ab..39fd3cac8 100644 --- a/src/Blocks/BlockBigFlower.h +++ b/src/Blocks/BlockBigFlower.h @@ -81,11 +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 - ); + 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))); } |