diff options
author | Mat <mail@mathias.is> | 2020-03-23 21:07:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 21:07:08 +0100 |
commit | 0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd (patch) | |
tree | 08767102c2360e78aada2ef3c76bea95ad4a909f /src/Blocks/BlockComparator.h | |
parent | Enable functional packets in 1.13 (diff) | |
download | cuberite-0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd.tar cuberite-0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd.tar.gz cuberite-0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd.tar.bz2 cuberite-0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd.tar.lz cuberite-0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd.tar.xz cuberite-0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd.tar.zst cuberite-0d0d019bbe6d7d6ce80056a6f249e69d5bb865bd.zip |
Diffstat (limited to 'src/Blocks/BlockComparator.h')
-rw-r--r-- | src/Blocks/BlockComparator.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Blocks/BlockComparator.h b/src/Blocks/BlockComparator.h index 4103c805e..e4dca5d77 100644 --- a/src/Blocks/BlockComparator.h +++ b/src/Blocks/BlockComparator.h @@ -10,9 +10,9 @@ class cBlockComparatorHandler : - public cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>> + public cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true> { - using super = cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>>; + using super = cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>; public: @@ -45,6 +45,11 @@ public: return ((a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) != E_BLOCK_AIR)); } + virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) override + { + return cItem(E_ITEM_COMPARATOR, 1, 0); + } + virtual bool GetPlacementBlockTypeMeta( cChunkInterface & a_ChunkInterface, cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, |