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/shopitem.cpp | |
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/shopitem.cpp')
-rw-r--r-- | src/shopitem.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 9370b744e..2871e1853 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -40,7 +40,8 @@ ShopItem::ShopItem(const int inventoryIndex, const int price) : Item(id, type, 0, 0, color, Identified_True, - false, false, false, false), + Damaged_False, + false, false, false), mDisplayName(), mDuplicates(), mPrice(price), @@ -57,7 +58,8 @@ ShopItem::ShopItem(const int id, const int price) : Item(id, type, 0, 0, color, Identified_True, - false, false, false, false), + Damaged_False, + false, false, false), mDisplayName(), mDuplicates(), mPrice(price), |