diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-10 13:44:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-10 22:49:59 +0300 |
commit | f3f7879c48fe8e202c3519cd465225645949167e (patch) | |
tree | 898a86c3446d988e86d7c3f160036533bdfd6475 /src/shopitem.cpp | |
parent | 37d7bd3163ad58391df36363b6f0135c638fbeb8 (diff) | |
download | plus-f3f7879c48fe8e202c3519cd465225645949167e.tar.gz plus-f3f7879c48fe8e202c3519cd465225645949167e.tar.bz2 plus-f3f7879c48fe8e202c3519cd465225645949167e.tar.xz plus-f3f7879c48fe8e202c3519cd465225645949167e.zip |
Add typed bool type Identified.
Diffstat (limited to 'src/shopitem.cpp')
-rw-r--r-- | src/shopitem.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 704396c87..9370b744e 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -38,7 +38,9 @@ ShopItem::ShopItem(const int inventoryIndex, const unsigned char color, const int quantity, const int price) : - Item(id, type, 0, 0, color, true, false, false, false, false), + Item(id, type, 0, 0, color, + Identified_True, + false, false, false, false), mDisplayName(), mDuplicates(), mPrice(price), @@ -53,7 +55,9 @@ ShopItem::ShopItem(const int id, const int type, const unsigned char color, const int price) : - Item(id, type, 0, 0, color, true, false, false, false, false), + Item(id, type, 0, 0, color, + Identified_True, + false, false, false, false), mDisplayName(), mDuplicates(), mPrice(price), |