summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemArmor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemArmor.h')
-rw-r--r--src/Items/ItemArmor.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/Items/ItemArmor.h b/src/Items/ItemArmor.h
index 3139c09f4..eb7e31c79 100644
--- a/src/Items/ItemArmor.h
+++ b/src/Items/ItemArmor.h
@@ -8,17 +8,14 @@
-class cItemArmorHandler:
+class cItemArmorHandler final :
public cItemHandler
{
using Super = cItemHandler;
public:
- cItemArmorHandler(int a_ItemType):
- Super(a_ItemType)
- {
- }
+ using Super::Super;
@@ -32,7 +29,7 @@ public:
const cItem & a_HeldItem,
const Vector3i a_ClickedBlockPos,
eBlockFace a_ClickedBlockFace
- ) override
+ ) const override
{
int SlotNum;
if (ItemCategory::IsHelmet(a_HeldItem.m_ItemType))
@@ -71,7 +68,7 @@ public:
- virtual bool CanRepairWithRawMaterial(short a_ItemType) override
+ virtual bool CanRepairWithRawMaterial(short a_ItemType) const override
{
switch (m_ItemType)
{