summaryrefslogtreecommitdiffstats
path: root/src/Item.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Item.cpp')
-rw-r--r--src/Item.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/Item.cpp b/src/Item.cpp
index 97cda0b95..2eb009d4a 100644
--- a/src/Item.cpp
+++ b/src/Item.cpp
@@ -459,3 +459,33 @@ void cItems::Set(int a_Idx, short a_ItemType, char a_ItemCount, short a_ItemDama
+
+bool cItems::Contains(const cItem & a_Item)
+{
+ for (auto itr : *this)
+ {
+ if (a_Item.IsEqual(itr))
+ {
+ return true;
+ }
+ }
+ return false;
+}
+
+
+
+
+
+bool cItems::ContainsType(const cItem & a_Item)
+{
+ for (auto itr : *this)
+ {
+ if (a_Item.IsSameType(itr))
+ {
+ return true;
+ }
+ }
+ return false;
+}
+
+