aboutsummaryrefslogtreecommitdiffstats
path: root/src/inventory.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-05-12 08:05:34 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-05-12 08:05:34 -0400
commitee4522669875b694911635b0c6cfbde7003ef040 (patch)
tree7841fd9bb0bd29798d31e9fe819ab4ededba67d3 /src/inventory.cpp
parent5432b278f8ed8c9aaeccf1ee7a4da540787f965d (diff)
parentcab9a8f66e683d79b67a1a4d78b6e68009642534 (diff)
RENDERING
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r--src/inventory.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp
index e6c5029..c64f62f 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -110,14 +110,10 @@ void items(void)
exml = exml->NextSiblingElement();
}
- for (auto &i : ItemMap) {
- std::cout << i->name << ", " << i->maxStackSize << ", " << i->dim.x << ", " << i->dim.y << std::endl;
- }
}
int Inventory::addItem(std::string name, uint count)
{
- std::cout << "Adding: " << count << " " << name << "\n";
for (uint i = 0; i < ItemMap.size(); i++) {
if (strCaseCmp(ItemMap[i]->name, name)) {
for (auto &it : Items) {