summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemShovel.h
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-05-01 00:47:57 +0200
committerHowaner <franzi.moos@googlemail.com>2014-05-05 17:34:17 +0200
commit3c102870f600178b7cabf6714f83e06fc05b42fd (patch)
treea9e022f5405de9c59b70ea7e664e1f5df758e3fc /src/Items/ItemShovel.h
parentMerge pull request #978 from mc-server/VectorAssignmentOperator (diff)
downloadcuberite-3c102870f600178b7cabf6714f83e06fc05b42fd.tar
cuberite-3c102870f600178b7cabf6714f83e06fc05b42fd.tar.gz
cuberite-3c102870f600178b7cabf6714f83e06fc05b42fd.tar.bz2
cuberite-3c102870f600178b7cabf6714f83e06fc05b42fd.tar.lz
cuberite-3c102870f600178b7cabf6714f83e06fc05b42fd.tar.xz
cuberite-3c102870f600178b7cabf6714f83e06fc05b42fd.tar.zst
cuberite-3c102870f600178b7cabf6714f83e06fc05b42fd.zip
Diffstat (limited to '')
-rw-r--r--src/Items/ItemShovel.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Items/ItemShovel.h b/src/Items/ItemShovel.h
index 873d5ae25..7659ccc54 100644
--- a/src/Items/ItemShovel.h
+++ b/src/Items/ItemShovel.h
@@ -41,4 +41,18 @@ public:
{
return (a_BlockType == E_BLOCK_SNOW);
}
+
+ virtual bool CanRepairWithItem(const cItem & a_Item) override
+ {
+ switch (m_ItemType)
+ {
+ case E_ITEM_WOODEN_SHOVEL: return (a_Item.m_ItemType == E_BLOCK_PLANKS);
+ case E_ITEM_STONE_SHOVEL: return (a_Item.m_ItemType == E_BLOCK_COBBLESTONE);
+ case E_ITEM_IRON_SHOVEL: return (a_Item.m_ItemType == E_ITEM_IRON);
+ case E_ITEM_GOLD_SHOVEL: return (a_Item.m_ItemType == E_ITEM_GOLD);
+ case E_ITEM_DIAMOND_SHOVEL: return (a_Item.m_ItemType == E_ITEM_DIAMOND);
+ }
+ return false;
+ }
+
};