diff options
author | Mattes D <github@xoft.cz> | 2014-03-07 14:45:45 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-07 14:45:45 +0100 |
commit | c1977035cfa6be57d50ec58aee7b5abe10b79ae7 (patch) | |
tree | 247b57eb23e423f934389190f17b44fdb261b99c /src/Blocks/BlockComparator.h | |
parent | Rewound PolarSSL to master branch. (diff) | |
parent | Fix comment (diff) | |
download | cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.gz cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.bz2 cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.lz cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.xz cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.zst cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.zip |
Diffstat (limited to 'src/Blocks/BlockComparator.h')
-rw-r--r-- | src/Blocks/BlockComparator.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Blocks/BlockComparator.h b/src/Blocks/BlockComparator.h index aba390d9d..cea35a864 100644 --- a/src/Blocks/BlockComparator.h +++ b/src/Blocks/BlockComparator.h @@ -26,6 +26,13 @@ public: } + virtual void OnCancelRightClick(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace) override + { + UNUSED(a_ChunkInterface); + a_WorldInterface.SendBlockTo(a_BlockX, a_BlockY, a_BlockZ, a_Player); + } + + virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override { // Reset meta to 0 |