diff options
Diffstat (limited to 'src/inventory.h')
-rw-r--r-- | src/inventory.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/inventory.h b/src/inventory.h index 793c21286..702f6c4dd 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -88,14 +88,15 @@ class Inventory final * Adds a new item in a free slot. */ void addItem(const int id, const int quantity, const uint8_t refine, - const unsigned char color, const bool equipment = false); + const unsigned char color, const bool equipment, + const bool equipped); /** * Sets the item at the given position. */ void setItem(const int index, const int id, const int quantity, const uint8_t refine, const unsigned char color, - const bool equipment = false); + const bool equipment, const bool equipped); /** * Remove a item from the inventory. |