diff options
Diffstat (limited to 'src/Items/ItemEnderchest.h')
-rw-r--r-- | src/Items/ItemEnderchest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemEnderchest.h b/src/Items/ItemEnderchest.h index 4feba1f13..bd8487b11 100644 --- a/src/Items/ItemEnderchest.h +++ b/src/Items/ItemEnderchest.h @@ -8,7 +8,7 @@ -class cItemEnderchestHandler : +class cItemEnderchestHandler final : public cItemHandler { using Super = cItemHandler; @@ -19,7 +19,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, E_BLOCK_ENDER_CHEST, cBlockEnderchestHandler::YawToMetaData(a_Player.GetYaw())); } |