diff options
Diffstat (limited to 'src/Items/ItemLever.h')
-rw-r--r-- | src/Items/ItemLever.h | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/src/Items/ItemLever.h b/src/Items/ItemLever.h index e3791e460..58c0acce7 100644 --- a/src/Items/ItemLever.h +++ b/src/Items/ItemLever.h @@ -7,17 +7,14 @@ -class cItemLeverHandler final : - public cItemHandler +class cItemLeverHandler final : public cItemHandler { using Super = cItemHandler; -public: - + public: using Super::Super; -private: - + private: /** Converts the block face of the neighbor to which the lever is attached to the lever block's meta. */ static NIBBLETYPE BlockFaceToMetaData(eBlockFace a_BlockFace) { @@ -36,8 +33,18 @@ private: } - virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, const eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) const override + virtual bool CommitPlacement( + cPlayer & a_Player, + const cItem & a_HeldItem, + const Vector3i a_PlacePosition, + const eBlockFace a_ClickedBlockFace, + const Vector3i a_CursorPosition + ) const override { - return a_Player.PlaceBlock(a_PlacePosition, static_cast<BLOCKTYPE>(a_HeldItem.m_ItemType), BlockFaceToMetaData(a_ClickedBlockFace)); + return a_Player.PlaceBlock( + a_PlacePosition, + static_cast<BLOCKTYPE>(a_HeldItem.m_ItemType), + BlockFaceToMetaData(a_ClickedBlockFace) + ); } }; |