summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemFurnace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemFurnace.h')
-rw-r--r--src/Items/ItemFurnace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemFurnace.h b/src/Items/ItemFurnace.h
index 24bcd5e06..48f725f4f 100644
--- a/src/Items/ItemFurnace.h
+++ b/src/Items/ItemFurnace.h
@@ -8,7 +8,7 @@
-class cItemFurnaceHandler :
+class cItemFurnaceHandler 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_FURNACE, cBlockFurnaceHandler::YawToMetaData(a_Player.GetYaw()));
}