diff options
author | Mattes D <github@xoft.cz> | 2014-10-19 19:13:48 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-19 19:13:48 +0200 |
commit | 8fbd65e77559f7324e217428baafd220331ca427 (patch) | |
tree | 4037415eb2f534a3c822f753b7773594728d3963 /src/Blocks/BlockRedstone.h | |
parent | Removed obsolete tr1::shared_ptr. (diff) | |
parent | Fixed error with non-const function (diff) | |
download | cuberite-8fbd65e77559f7324e217428baafd220331ca427.tar cuberite-8fbd65e77559f7324e217428baafd220331ca427.tar.gz cuberite-8fbd65e77559f7324e217428baafd220331ca427.tar.bz2 cuberite-8fbd65e77559f7324e217428baafd220331ca427.tar.lz cuberite-8fbd65e77559f7324e217428baafd220331ca427.tar.xz cuberite-8fbd65e77559f7324e217428baafd220331ca427.tar.zst cuberite-8fbd65e77559f7324e217428baafd220331ca427.zip |
Diffstat (limited to 'src/Blocks/BlockRedstone.h')
-rw-r--r-- | src/Blocks/BlockRedstone.h | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/src/Blocks/BlockRedstone.h b/src/Blocks/BlockRedstone.h index 37d61ed73..2785eb479 100644 --- a/src/Blocks/BlockRedstone.h +++ b/src/Blocks/BlockRedstone.h @@ -3,6 +3,7 @@ #include "BlockHandler.h" #include "../World.h" +#include "BlockSlab.h" @@ -16,11 +17,33 @@ public: : cBlockHandler(a_BlockType) { } - + + virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override { - return ((a_RelY > 0) && cBlockInfo::FullyOccupiesVoxel(a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ))); + if (a_RelY <= 0) + { + return false; + } + + BLOCKTYPE BelowBlock; + NIBBLETYPE BelowBlockMeta; + a_Chunk.GetBlockTypeMeta(a_RelX, a_RelY - 1, a_RelZ, BelowBlock, BelowBlockMeta); + + if (cBlockInfo::FullyOccupiesVoxel(BelowBlock)) + { + return true; + } + else if (cBlockSlabHandler::IsAnySlabType(BelowBlock)) + { + // Check if the slab is turned up side down + if ((BelowBlockMeta & 0x08) == 0x08) + { + return true; + } + } + return false; } |