diff options
author | Alexander Harkness <me@bearbin.net> | 2018-01-05 12:28:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-05 12:28:06 +0100 |
commit | b4aa19f329b06e42eb2591fc488b70dc0df41940 (patch) | |
tree | 5b18f7bde0b3129310d273f63b68151850c43ea7 /src/Items/ItemShovel.h | |
parent | Add the fmt library (#4065) (diff) | |
download | cuberite-b4aa19f329b06e42eb2591fc488b70dc0df41940.tar cuberite-b4aa19f329b06e42eb2591fc488b70dc0df41940.tar.gz cuberite-b4aa19f329b06e42eb2591fc488b70dc0df41940.tar.bz2 cuberite-b4aa19f329b06e42eb2591fc488b70dc0df41940.tar.lz cuberite-b4aa19f329b06e42eb2591fc488b70dc0df41940.tar.xz cuberite-b4aa19f329b06e42eb2591fc488b70dc0df41940.tar.zst cuberite-b4aa19f329b06e42eb2591fc488b70dc0df41940.zip |
Diffstat (limited to 'src/Items/ItemShovel.h')
-rw-r--r-- | src/Items/ItemShovel.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/Items/ItemShovel.h b/src/Items/ItemShovel.h index a3ef97684..a39e6ecac 100644 --- a/src/Items/ItemShovel.h +++ b/src/Items/ItemShovel.h @@ -21,6 +21,20 @@ public: { } + + + virtual short GetDurabilityLossByAction(eDurabilityLostAction a_Action) override + { + switch (a_Action) + { + case dlaAttackEntity: return 2; + case dlaBreakBlock: return 1; + case dlaBreakBlockInstant: return 0; + } + } + + + virtual bool OnDiggingBlock(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_Dir) override { BLOCKTYPE Block = a_World->GetBlock(a_BlockX, a_BlockY, a_BlockZ); @@ -31,7 +45,7 @@ public: BlockHandler(Block)->DropBlock(ChunkInterface, *a_World, PluginInterface, a_Player, a_BlockX, a_BlockY, a_BlockZ); a_World->SetBlock(a_BlockX, a_BlockY, a_BlockZ, E_BLOCK_AIR, 0); - a_Player->UseEquippedItem(); + a_Player->UseEquippedItem(cItemHandler::dlaBreakBlock); return true; } return false; |