summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemPickaxe.h
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-05-06 19:38:09 +0200
committerHowaner <franzi.moos@googlemail.com>2014-05-06 19:38:09 +0200
commit954b59d6f460106e93efab39c8666d4692db25b6 (patch)
tree77de4f6c34766e70846fa6dcbd7c4c471e486793 /src/Items/ItemPickaxe.h
parentSimplified the HandleAnvilItemName() code. (diff)
downloadcuberite-954b59d6f460106e93efab39c8666d4692db25b6.tar
cuberite-954b59d6f460106e93efab39c8666d4692db25b6.tar.gz
cuberite-954b59d6f460106e93efab39c8666d4692db25b6.tar.bz2
cuberite-954b59d6f460106e93efab39c8666d4692db25b6.tar.lz
cuberite-954b59d6f460106e93efab39c8666d4692db25b6.tar.xz
cuberite-954b59d6f460106e93efab39c8666d4692db25b6.tar.zst
cuberite-954b59d6f460106e93efab39c8666d4692db25b6.zip
Diffstat (limited to 'src/Items/ItemPickaxe.h')
-rw-r--r--src/Items/ItemPickaxe.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Items/ItemPickaxe.h b/src/Items/ItemPickaxe.h
index 46e68ec70..ff2c2069b 100644
--- a/src/Items/ItemPickaxe.h
+++ b/src/Items/ItemPickaxe.h
@@ -86,15 +86,15 @@ public:
return false;
}
- virtual bool CanRepairWithItem(const cItem & a_Item) override
+ virtual bool CanRepairWithRawMaterial(short a_ItemType) override
{
switch (m_ItemType)
{
- case E_ITEM_WOODEN_PICKAXE: return (a_Item.m_ItemType == E_BLOCK_PLANKS);
- case E_ITEM_STONE_PICKAXE: return (a_Item.m_ItemType == E_BLOCK_COBBLESTONE);
- case E_ITEM_IRON_PICKAXE: return (a_Item.m_ItemType == E_ITEM_IRON);
- case E_ITEM_GOLD_PICKAXE: return (a_Item.m_ItemType == E_ITEM_GOLD);
- case E_ITEM_DIAMOND_PICKAXE: return (a_Item.m_ItemType == E_ITEM_DIAMOND);
+ case E_ITEM_WOODEN_PICKAXE: return (a_ItemType == E_BLOCK_PLANKS);
+ case E_ITEM_STONE_PICKAXE: return (a_ItemType == E_BLOCK_COBBLESTONE);
+ case E_ITEM_IRON_PICKAXE: return (a_ItemType == E_ITEM_IRON);
+ case E_ITEM_GOLD_PICKAXE: return (a_ItemType == E_ITEM_GOLD);
+ case E_ITEM_DIAMOND_PICKAXE: return (a_ItemType == E_ITEM_DIAMOND);
}
return false;
}