diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemSlab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemSlab.h b/src/Items/ItemSlab.h index 467975047..88dbef1e4 100644 --- a/src/Items/ItemSlab.h +++ b/src/Items/ItemSlab.h @@ -7,7 +7,7 @@ -class cItemSlabHandler: +class cItemSlabHandler 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 { // Confer BlockSlab.h, which we're in cahoots with to make the below logic work. |