diff options
author | madmaxoft <github@xoft.cz> | 2014-07-18 23:51:36 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-07-18 23:51:36 +0200 |
commit | 76b33970b05c6ee8c018198904f8054b23df44d7 (patch) | |
tree | 1edf71ddb36ffa03abf97518005186f462bfee11 /src/Inventory.h | |
parent | Merge branch 'Entities' (diff) | |
parent | Debuggers: Optimized and commented the /rmitem handler. (diff) | |
download | cuberite-76b33970b05c6ee8c018198904f8054b23df44d7.tar cuberite-76b33970b05c6ee8c018198904f8054b23df44d7.tar.gz cuberite-76b33970b05c6ee8c018198904f8054b23df44d7.tar.bz2 cuberite-76b33970b05c6ee8c018198904f8054b23df44d7.tar.lz cuberite-76b33970b05c6ee8c018198904f8054b23df44d7.tar.xz cuberite-76b33970b05c6ee8c018198904f8054b23df44d7.tar.zst cuberite-76b33970b05c6ee8c018198904f8054b23df44d7.zip |
Diffstat (limited to 'src/Inventory.h')
-rw-r--r-- | src/Inventory.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Inventory.h b/src/Inventory.h index e25fc4a8a..5175afd14 100644 --- a/src/Inventory.h +++ b/src/Inventory.h @@ -86,6 +86,10 @@ public: */ int AddItems(cItems & a_ItemStackList, bool a_AllowNewStacks, bool a_tryToFillEquippedFirst); + /** Removes the specified item from the inventory, as many as possible, up to a_ItemStack.m_ItemCount. + Returns the number of items that were removed. */ + int RemoveItem(const cItem & a_ItemStack); + /** Removes one item out of the currently equipped item stack, returns true if successful, false if empty-handed */ bool RemoveOneEquippedItem(void); |