diff options
Diffstat (limited to 'src/net/ea/inventoryitem.h')
-rw-r--r-- | src/net/ea/inventoryitem.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/net/ea/inventoryitem.h b/src/net/ea/inventoryitem.h index 0f1e372ee..20ea399d4 100644 --- a/src/net/ea/inventoryitem.h +++ b/src/net/ea/inventoryitem.h @@ -45,16 +45,22 @@ class InventoryItem final int quantity; uint8_t refine; unsigned char color; + bool identified; bool equip; - InventoryItem(const int slot0, const int id0, const int quantity0, - const uint8_t refine0, const unsigned char color0, + InventoryItem(const int slot0, + const int id0, + const int quantity0, + const uint8_t refine0, + const unsigned char color0, + const bool identified0, const bool equip0) : slot(slot0), id(id0), quantity(quantity0), refine(refine0), color(color0), + identified(identified0), equip(equip0) { } |