diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-21 01:13:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-21 01:13:46 +0300 |
commit | 76e55447563fae6f8d17f2fd90231c81e0b3f927 (patch) | |
tree | fa0b2b5daaa50149329f12b7f47b28901d95cc79 /src/shopitem.cpp | |
parent | 8d12abe6ff4114a04b8fc9549e8f44683fed9e3d (diff) | |
download | plus-76e55447563fae6f8d17f2fd90231c81e0b3f927.tar.gz plus-76e55447563fae6f8d17f2fd90231c81e0b3f927.tar.bz2 plus-76e55447563fae6f8d17f2fd90231c81e0b3f927.tar.xz plus-76e55447563fae6f8d17f2fd90231c81e0b3f927.zip |
Add to item field identified.
Diffstat (limited to 'src/shopitem.cpp')
-rw-r--r-- | src/shopitem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 814b99330..6e01eabf6 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -35,7 +35,7 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, const unsigned char color, const int quantity, const int price) : - Item(id, 0, 0, color, false, false), + Item(id, 0, 0, color, true, false, false), mDisplayName(), mDuplicates(), mPrice(price), @@ -47,7 +47,7 @@ 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, false, false), + Item(id, 0, 0, color, true, false, false), mDisplayName(), mDuplicates(), mPrice(price), |