summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-01-05 14:03:44 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-01-05 14:03:44 +0000
commit371b1d7ef0e17f8550e9b2379bed563969e41c04 (patch)
tree3479f9c7fc1ff7a6e244986e31d80a9e618d9ec4
parent24a685df2da7e8b9f0aeaee1d6c3e89e716939a6 (diff)
Fix for bug #464, thanks John
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8634 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_taxonomy.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_taxonomy.cpp b/src/modules/m_taxonomy.cpp
index ca88d1c4a..0790949a8 100644
--- a/src/modules/m_taxonomy.cpp
+++ b/src/modules/m_taxonomy.cpp
@@ -35,8 +35,7 @@ class CommandTaxonomy : public Command
if (dest)
{
std::deque<std::string> list;
- list.clear();
- user->GetExtList(list);
+ dest->GetExtList(list);
user->WriteServ("304 " + std::string(user->nick) + ":TAXONOMY ITEMS " + std::string(dest->nick) + " " +ConvToStr(list.size()));
for (unsigned int j = 0; j < list.size(); j++)
{