diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-11 23:17:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-11 23:17:58 +0300 |
commit | 4dbda55f670866db29a64ca7a79500efbe6f8d00 (patch) | |
tree | ddf806b499dcb4896568278b05defad1f27bcd06 /src/item.cpp | |
parent | fbb1186a319794dba7c23c466c07d6f45f940b8e (diff) | |
download | plus-4dbda55f670866db29a64ca7a79500efbe6f8d00.tar.gz plus-4dbda55f670866db29a64ca7a79500efbe6f8d00.tar.bz2 plus-4dbda55f670866db29a64ca7a79500efbe6f8d00.tar.xz plus-4dbda55f670866db29a64ca7a79500efbe6f8d00.zip |
Replace some getters to direct fileds using.
Diffstat (limited to 'src/item.cpp')
-rw-r--r-- | src/item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/item.cpp b/src/item.cpp index 0c12020aa..592d20633 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -36,9 +36,9 @@ extern int serverVersion; Item::Item(const int id, const int quantity, const int refine, const unsigned char color, const bool equipment, const bool equipped): + mQuantity(quantity), mImage(nullptr), mDrawImage(nullptr), - mQuantity(quantity), mEquipment(equipment), mEquipped(equipped), mInEquipment(false), |