summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemRail.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemRail.h')
-rw-r--r--src/Items/ItemRail.h23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/Items/ItemRail.h b/src/Items/ItemRail.h
index a53f620b2..24c93d7b8 100644
--- a/src/Items/ItemRail.h
+++ b/src/Items/ItemRail.h
@@ -8,21 +8,28 @@
-class cItemRailHandler final :
- public cItemHandler
+class cItemRailHandler final : public cItemHandler
{
using Super = cItemHandler;
-public:
-
+ public:
using Super::Super;
-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
+ 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
{
cChunkInterface ChunkInterface(a_Player.GetWorld()->GetChunkMap());
const auto RailType = static_cast<BLOCKTYPE>(a_HeldItem.m_ItemType);
- return a_Player.PlaceBlock(a_PlacePosition, RailType, cBlockRailHandler::FindMeta(ChunkInterface, a_PlacePosition, RailType));
+ return a_Player.PlaceBlock(
+ a_PlacePosition,
+ RailType,
+ cBlockRailHandler::FindMeta(ChunkInterface, a_PlacePosition, RailType)
+ );
}
};