Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/inventory.cc')
-rw-r--r--src/core/inventory.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/inventory.cc b/src/core/inventory.cc
index 645ddf8..e079256 100644
--- a/src/core/inventory.cc
+++ b/src/core/inventory.cc
@@ -93,6 +93,16 @@ void Inventory::erase(const unsigned int id)
}
}
+Item *Inventory::find(Item *item) const
+{
+ for (Items::const_iterator it = inventory_items.begin(); it != inventory_items.end(); it++) {
+ if ((*it) == item) {
+ return item;
+ }
+ }
+ return 0;
+}
+
Item *Inventory::find(const Info *info) const
{
// sarch the inventory for a specified item type