diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-23 01:27:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-23 01:27:45 +0300 |
commit | 9be90b76adb1518c4ffe0e365a18c5afcc3158f2 (patch) | |
tree | bbfea959321e05c329f18ac37757be91f38b9df8 /src/shopitem.cpp | |
parent | 7f1053c5ce9e80485730290d002f7ae25db83996 (diff) | |
download | plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.tar.gz plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.tar.bz2 plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.tar.xz plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.zip |
Add item type to item object.
Diffstat (limited to 'src/shopitem.cpp')
-rw-r--r-- | src/shopitem.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 2dc82f010..d87668d93 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -34,10 +34,11 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, + const int type, const unsigned char color, const int quantity, const int price) : - Item(id, 0, 0, color, true, false, false, false, false), + Item(id, type, 0, 0, color, true, false, false, false, false), mDisplayName(), mDuplicates(), mPrice(price), @@ -48,8 +49,11 @@ ShopItem::ShopItem(const int inventoryIndex, addDuplicate(inventoryIndex, quantity); } -ShopItem::ShopItem(const int id, const unsigned char color, const int price) : - Item(id, 0, 0, color, true, false, false, false, false), +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), mDisplayName(), mDuplicates(), mPrice(price), |