diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-10 23:26:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-10 23:26:53 +0300 |
commit | b81f22b9ca68675d16fa2263b89d7dd0d179ef45 (patch) | |
tree | 7a4554927636a77d5233ceffc1814eee1fdd3578 /src/net/ea | |
parent | f3f7879c48fe8e202c3519cd465225645949167e (diff) | |
download | plus-b81f22b9ca68675d16fa2263b89d7dd0d179ef45.tar.gz plus-b81f22b9ca68675d16fa2263b89d7dd0d179ef45.tar.bz2 plus-b81f22b9ca68675d16fa2263b89d7dd0d179ef45.tar.xz plus-b81f22b9ca68675d16fa2263b89d7dd0d179ef45.zip |
Add typed bool type Damaged.
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/inventoryitem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/ea/inventoryitem.h b/src/net/ea/inventoryitem.h index 5c0b86658..dcd90b336 100644 --- a/src/net/ea/inventoryitem.h +++ b/src/net/ea/inventoryitem.h @@ -50,7 +50,7 @@ class InventoryItem final uint8_t refine; unsigned char color; Identified identified; - bool damaged; + Damaged damaged; bool favorite; bool equip; @@ -62,7 +62,7 @@ class InventoryItem final const uint8_t refine0, const unsigned char color0, const Identified identified0, - const bool damaged0, + const Damaged damaged0, const bool favorite0, const bool equip0) : slot(slot0), |