summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemAxe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemAxe.h')
-rw-r--r--src/Items/ItemAxe.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/Items/ItemAxe.h b/src/Items/ItemAxe.h
index 3b981ef7c..cee41989d 100644
--- a/src/Items/ItemAxe.h
+++ b/src/Items/ItemAxe.h
@@ -8,13 +8,15 @@
-class cItemAxeHandler :
+class cItemAxeHandler:
public cItemHandler
{
- typedef cItemHandler super;
+ using Super = cItemHandler;
+
public:
- cItemAxeHandler(int a_ItemType)
- : cItemHandler(a_ItemType)
+
+ cItemAxeHandler(int a_ItemType):
+ Super(a_ItemType)
{
}
@@ -37,7 +39,7 @@ public:
{
if (!IsBlockMaterialWood(a_Block) && !IsBlockMaterialPlants(a_Block) && !IsBlockMaterialVine(a_Block))
{
- return super::GetBlockBreakingStrength(a_Block);
+ return Super::GetBlockBreakingStrength(a_Block);
}
else
{