diff options
Diffstat (limited to 'src/Items/ItemLilypad.h')
-rw-r--r-- | src/Items/ItemLilypad.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Items/ItemLilypad.h b/src/Items/ItemLilypad.h index b448b33c8..f13212b07 100644 --- a/src/Items/ItemLilypad.h +++ b/src/Items/ItemLilypad.h @@ -9,14 +9,14 @@ -class cItemLilypadHandler: +class cItemLilypadHandler final: public cItemHandler { using Super = cItemHandler; public: - cItemLilypadHandler(int a_ItemType): + constexpr cItemLilypadHandler(int a_ItemType): Super(a_ItemType) { @@ -26,7 +26,7 @@ public: - virtual bool IsPlaceable(void) override + virtual bool IsPlaceable(void) const override { return false; // Set as not placeable so OnItemUse is called } @@ -42,7 +42,7 @@ public: const cItem & a_HeldItem, const Vector3i a_ClickedBlockPos, eBlockFace a_ClickedBlockFace - ) override + ) const override { // The client sends BLOCK_FACE_NONE when it determines it should do a tracing-based placement. // Otherwise, a normal block face is sent. |