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/ItemHandler.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 '')
-rw-r--r-- | src/Items/ItemHandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Items/ItemHandler.h b/src/Items/ItemHandler.h index 4993eac85..ca090eb29 100644 --- a/src/Items/ItemHandler.h +++ b/src/Items/ItemHandler.h @@ -85,6 +85,12 @@ public: /** Blocks simply get placed */ virtual bool IsPlaceable(void); + /** Can the anvil repair this item, when a_Item is the second input? */ + virtual bool CanRepairWithRawMaterial(short a_ItemType); + + /** Get the repair cost from the item, or 0 if the item hasn't repair cost. */ + virtual int GetRepairCost(void); + /** Called before a block is placed into a world. The handler should return true to allow placement, false to refuse. Also, the handler should set a_BlockType and a_BlockMeta to correct values for the newly placed block. |