diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-07-28 21:49:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-07-28 21:49:20 +0300 |
commit | 41e471613e25961e25517de811aa131da033e0f1 (patch) | |
tree | b349078bfcc4f46a3cd5406cd7830ddaaa10da46 /src/shopitem.cpp | |
parent | 7fa49d71fd0327de46688dc04a10573b0f8d1b5d (diff) | |
download | plus-41e471613e25961e25517de811aa131da033e0f1.tar.gz plus-41e471613e25961e25517de811aa131da033e0f1.tar.bz2 plus-41e471613e25961e25517de811aa131da033e0f1.tar.xz plus-41e471613e25961e25517de811aa131da033e0f1.zip |
move bools in shopitem.
Diffstat (limited to 'src/shopitem.cpp')
-rw-r--r-- | src/shopitem.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp index af773bb2a..56f66478e 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -33,10 +33,10 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, const unsigned char color, const int quantity, const int price) : Item(id, 0, 0, color), - mPrice(price), mDisplayName(), - mShowQuantity(true), - mDuplicates() + mDuplicates(), + mPrice(price), + mShowQuantity(true) { if (serverVersion > 0) { @@ -57,10 +57,10 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, ShopItem::ShopItem(const int id, const unsigned char color, const int price) : Item(id, 0, 0, color), - mPrice(price), mDisplayName(), - mShowQuantity(false), - mDuplicates() + mDuplicates(), + mPrice(price), + mShowQuantity(false) { if (serverVersion > 0) { |