summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemPlanks.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemPlanks.h')
-rw-r--r--src/Items/ItemPlanks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemPlanks.h b/src/Items/ItemPlanks.h
index 537e44460..0bc079806 100644
--- a/src/Items/ItemPlanks.h
+++ b/src/Items/ItemPlanks.h
@@ -7,7 +7,7 @@
-class cItemPlanksHandler :
+class cItemPlanksHandler final :
public cItemHandler
{
using Super = cItemHandler;
@@ -18,7 +18,7 @@ public:
private:
- virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, const eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) 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), static_cast<NIBBLETYPE>(a_HeldItem.m_ItemDamage));
}