diff options
author | Mattes D <github@xoft.cz> | 2014-09-30 22:53:32 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-30 22:53:32 +0200 |
commit | 1d185fe2073f4dd68ae9675e9bdbaa554754b8ea (patch) | |
tree | ac0c02f236ecc5904558794dc84c882d9512b0d7 /src/Blocks/BlockTrapdoor.h | |
parent | Merge pull request #1485 from mc-server/PluginMessages (diff) | |
parent | Code improvements (diff) | |
download | cuberite-1d185fe2073f4dd68ae9675e9bdbaa554754b8ea.tar cuberite-1d185fe2073f4dd68ae9675e9bdbaa554754b8ea.tar.gz cuberite-1d185fe2073f4dd68ae9675e9bdbaa554754b8ea.tar.bz2 cuberite-1d185fe2073f4dd68ae9675e9bdbaa554754b8ea.tar.lz cuberite-1d185fe2073f4dd68ae9675e9bdbaa554754b8ea.tar.xz cuberite-1d185fe2073f4dd68ae9675e9bdbaa554754b8ea.tar.zst cuberite-1d185fe2073f4dd68ae9675e9bdbaa554754b8ea.zip |
Diffstat (limited to 'src/Blocks/BlockTrapdoor.h')
-rw-r--r-- | src/Blocks/BlockTrapdoor.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Blocks/BlockTrapdoor.h b/src/Blocks/BlockTrapdoor.h index 41256ae55..8c96de0f1 100644 --- a/src/Blocks/BlockTrapdoor.h +++ b/src/Blocks/BlockTrapdoor.h @@ -29,6 +29,12 @@ public: virtual void OnUse(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ) override { + if (m_BlockType == E_BLOCK_IRON_TRAPDOOR) + { + // Iron doors can only be toggled by redstone, not by right-clicking + return; + } + // Flip the ON bit on/off using the XOR bitwise operation NIBBLETYPE Meta = (a_ChunkInterface.GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ) ^ 0x04); a_ChunkInterface.SetBlockMeta(a_BlockX, a_BlockY, a_BlockZ, Meta); |