summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemRedstoneDust.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemRedstoneDust.h')
-rw-r--r--src/Items/ItemRedstoneDust.h25
1 files changed, 11 insertions, 14 deletions
diff --git a/src/Items/ItemRedstoneDust.h b/src/Items/ItemRedstoneDust.h
index 803dd601d..cd96de3ac 100644
--- a/src/Items/ItemRedstoneDust.h
+++ b/src/Items/ItemRedstoneDust.h
@@ -7,20 +7,24 @@
-class cItemRedstoneDustHandler final:
- public cItemHandler
+class cItemRedstoneDustHandler final : public cItemHandler
{
using Super = cItemHandler;
-public:
-
+ public:
using Super::Super;
- 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, E_BLOCK_REDSTONE_WIRE, 0);
}
@@ -29,12 +33,5 @@ public:
- virtual bool IsPlaceable(void) const override
- {
- return true;
- }
-} ;
-
-
-
-
+ virtual bool IsPlaceable(void) const override { return true; }
+};