summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-01-20 17:24:08 -0700
committerIra Rice <irarice@gmail.com>2009-01-20 17:24:08 -0700
commit36bd28ec6bfcf1e15fdf4378ce7a5687cad604bd (patch)
tree8bd2dffaf311a4c6ef43fc610c5e4795e24ce965
parent567cd92eae386c28b6af90121d0f8f575dce0687 (diff)
downloadmana-client-36bd28ec6bfcf1e15fdf4378ce7a5687cad604bd.tar.gz
mana-client-36bd28ec6bfcf1e15fdf4378ce7a5687cad604bd.tar.bz2
mana-client-36bd28ec6bfcf1e15fdf4378ce7a5687cad604bd.tar.xz
mana-client-36bd28ec6bfcf1e15fdf4378ce7a5687cad604bd.zip
Made link searching case insensitive.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r--src/gui/chat.cpp8
-rw-r--r--src/resources/itemdb.cpp9
2 files changed, 16 insertions, 1 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp
index b4b533db..4c03f618 100644
--- a/src/gui/chat.cpp
+++ b/src/gui/chat.cpp
@@ -364,6 +364,14 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg)
if (end != std::string::npos)
{
std::string temp = msg.substr(start+1, end-1);
+
+ for (unsigned int i = 0; i < temp.size(); i++)
+ {
+ temp[i] = (char) tolower(temp[i]);
+ }
+
+ std::cout << temp << std::endl;
+
ItemInfo itemInfo = ItemDB::get(temp);
msg.insert(end, "@@");
msg.insert(start+1, "|");
diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp
index 53e7530b..d27ad23d 100644
--- a/src/resources/itemdb.cpp
+++ b/src/resources/itemdb.cpp
@@ -124,7 +124,14 @@ void ItemDB::load()
NamedItemInfoIterator itr = mNamedItemInfos.find(name);
if (itr == mNamedItemInfos.end())
{
- mNamedItemInfos[name] = itemInfo;
+ std::string temp = name;
+
+ for (unsigned int i = 0; i < temp.size(); i++)
+ {
+ temp[i] = (char) tolower(temp[i]);
+ }
+
+ mNamedItemInfos[temp] = itemInfo;
}
else
{