diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemPickaxe.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/Items/ItemPickaxe.h b/src/Items/ItemPickaxe.h index 66796012b..84fa655fc 100644 --- a/src/Items/ItemPickaxe.h +++ b/src/Items/ItemPickaxe.h @@ -16,6 +16,20 @@ public: } + + + virtual short GetDurabilityLossByAction(eDurabilityLostAction a_Action) override + { + switch (a_Action) + { + case dlaAttackEntity: return 2; + case dlaBreakBlock: return 1; + case dlaBreakBlockInstant: return 0; + } + } + + + char PickaxeLevel() { switch (m_ItemType) @@ -173,7 +187,3 @@ public: } } ; - - - - |