diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockComparator.h | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/src/Blocks/BlockComparator.h b/src/Blocks/BlockComparator.h index e4dca5d77..0826e3133 100644 --- a/src/Blocks/BlockComparator.h +++ b/src/Blocks/BlockComparator.h @@ -10,9 +10,9 @@ class cBlockComparatorHandler : - public cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true> + public cYawRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03> { - using super = cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>; + using super = cYawRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03>; public: @@ -50,18 +50,6 @@ public: 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, - int a_CursorX, int a_CursorY, int a_CursorZ, - BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta - ) override - { - a_BlockType = m_BlockType; - a_BlockMeta = cBlockRedstoneRepeaterHandler::RepeaterRotationToMetaData(a_Player.GetYaw()); - return true; - } - inline static bool IsInSubtractionMode(NIBBLETYPE a_Meta) { return ((a_Meta & 0x4) == 0x4); |