diff options
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), |