From c81d80b6cd18977f60f8ba19f898a583c055d117 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 23 Aug 2016 22:06:54 +0300 Subject: Add check for cards for existing item id. --- src/resources/item/item.cpp | 8 ++++++++ src/resources/item/item.h | 2 ++ 2 files changed, 10 insertions(+) (limited to 'src/resources') diff --git a/src/resources/item/item.cpp b/src/resources/item/item.cpp index 9d3a1b3f8..4627225f2 100644 --- a/src/resources/item/item.cpp +++ b/src/resources/item/item.cpp @@ -181,3 +181,11 @@ void Item::updateColor() if (serverFeatures && serverFeatures->haveItemColors()) setId(mId, ItemColorManager::getColorFromCards(&mCards[0])); } + +bool Item::isItem(const int id) +{ + return id != 0 && + id != CARD0_FORGE && + id != CARD0_CREATE && + id != CARD0_PET; +} diff --git a/src/resources/item/item.h b/src/resources/item/item.h index 5ae0cbc99..64e5fa063 100644 --- a/src/resources/item/item.h +++ b/src/resources/item/item.h @@ -227,6 +227,8 @@ class Item notfinal void updateColor(); + static bool isItem(const int id); + int mId; /**< Item id. */ ItemColor mColor; int mQuantity; /**< Number of items. */ -- cgit v1.2.3-60-g2f50