summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemButton.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemButton.h')
-rw-r--r--src/Items/ItemButton.h23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/Items/ItemButton.h b/src/Items/ItemButton.h
index c106f393f..9736661c2 100644
--- a/src/Items/ItemButton.h
+++ b/src/Items/ItemButton.h
@@ -7,17 +7,14 @@
-class cItemButtonHandler final :
- public cItemHandler
+class cItemButtonHandler final : public cItemHandler
{
using Super = cItemHandler;
-public:
-
+ public:
using Super::Super;
-private:
-
+ private:
/** Converts the block face of the neighbor to which the button is attached, to the block meta for this button. */
static NIBBLETYPE BlockFaceToMetaData(eBlockFace a_BlockFace)
{
@@ -38,8 +35,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)
+ );
}
};