summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemLadder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemLadder.h')
-rw-r--r--src/Items/ItemLadder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemLadder.h b/src/Items/ItemLadder.h
index 67de799c5..a778fee6c 100644
--- a/src/Items/ItemLadder.h
+++ b/src/Items/ItemLadder.h
@@ -8,7 +8,7 @@
-class cItemLadderHandler :
+class cItemLadderHandler final :
public cItemHandler
{
using Super = cItemHandler;
@@ -35,7 +35,7 @@ private:
}
- virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) override
+ virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) const override
{
const auto & World = *a_Player.GetWorld();
const auto ClickedBlockType = World.GetBlock(AddFaceDirection(a_PlacePosition, a_ClickedBlockFace, true));