diff options
author | Mattes D <github@xoft.cz> | 2014-05-06 21:46:50 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-05-06 21:46:50 +0200 |
commit | 66c5c81e02dd9350542e1dd65b8e33c2f45a011b (patch) | |
tree | e719f55d50354e881c8ace1ca83516596519abaf /src/Items/ItemSword.h | |
parent | Merge pull request #927 from mc-server/fixes (diff) | |
parent | Rename CanRepairWithItem to CanRepairWithRawMaterial and rename Size() to Count() (diff) | |
download | cuberite-66c5c81e02dd9350542e1dd65b8e33c2f45a011b.tar cuberite-66c5c81e02dd9350542e1dd65b8e33c2f45a011b.tar.gz cuberite-66c5c81e02dd9350542e1dd65b8e33c2f45a011b.tar.bz2 cuberite-66c5c81e02dd9350542e1dd65b8e33c2f45a011b.tar.lz cuberite-66c5c81e02dd9350542e1dd65b8e33c2f45a011b.tar.xz cuberite-66c5c81e02dd9350542e1dd65b8e33c2f45a011b.tar.zst cuberite-66c5c81e02dd9350542e1dd65b8e33c2f45a011b.zip |
Diffstat (limited to 'src/Items/ItemSword.h')
-rw-r--r-- | src/Items/ItemSword.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Items/ItemSword.h b/src/Items/ItemSword.h index a7c1d2432..44feb2d83 100644 --- a/src/Items/ItemSword.h +++ b/src/Items/ItemSword.h @@ -23,6 +23,19 @@ public: { return (a_BlockType == E_BLOCK_COBWEB); } + + virtual bool CanRepairWithRawMaterial(short a_ItemType) override + { + switch (m_ItemType) + { + case E_ITEM_WOODEN_SWORD: return (a_ItemType == E_BLOCK_PLANKS); + case E_ITEM_STONE_SWORD: return (a_ItemType == E_BLOCK_COBBLESTONE); + case E_ITEM_IRON_SWORD: return (a_ItemType == E_ITEM_IRON); + case E_ITEM_GOLD_SWORD: return (a_ItemType == E_ITEM_GOLD); + case E_ITEM_DIAMOND_SWORD: return (a_ItemType == E_ITEM_DIAMOND); + } + return false; + } } ; |