diff options
author | Mattes D <github@xoft.cz> | 2014-03-30 16:58:42 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-30 16:58:42 +0200 |
commit | e474f40ac947aad8e208455a6fde8522c671eed9 (patch) | |
tree | 6b5678b1bcf0cb054668851145bb7ccf38038a4c /src/Blocks/BlockSlab.h | |
parent | Merge pull request #838 from mc-server/lilypads (diff) | |
parent | Added in MetaMirrorXY and MetaMirrorYZ to cBlockSignHandler. (diff) | |
download | cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.gz cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.bz2 cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.lz cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.xz cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.tar.zst cuberite-e474f40ac947aad8e208455a6fde8522c671eed9.zip |
Diffstat (limited to 'src/Blocks/BlockSlab.h')
-rw-r--r-- | src/Blocks/BlockSlab.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/Blocks/BlockSlab.h b/src/Blocks/BlockSlab.h index 7cd2c97b2..77e8b8e55 100644 --- a/src/Blocks/BlockSlab.h +++ b/src/Blocks/BlockSlab.h @@ -14,8 +14,6 @@ - - class cBlockSlabHandler : public cBlockHandler { @@ -184,6 +182,15 @@ public: ASSERT(!"Unhandled double slab type!"); return ""; } + + + virtual NIBBLETYPE MetaMirrorXZ(NIBBLETYPE a_Meta) override + { + NIBBLETYPE OtherMeta = a_Meta & 0x07; // Contains unrelated meta data. + + // 8th bit is up/down. 1 right-side-up, 0 is up-side-down. + return (a_Meta & 0x08) ? 0x00 + OtherMeta : 0x01 + OtherMeta; + } } ; |