diff options
| author | 2008-01-05 14:04:27 +0000 | |
|---|---|---|
| committer | 2008-01-05 14:04:27 +0000 | |
| commit | 88a7cd88718448ee083a5bf5b6a021aea24969f9 (patch) | |
| tree | f6c779202d24593c43f8d0a3dc0c78ff70ba8bcb /src/modules/m_taxonomy.cpp | |
| parent | Fix for bug #458: servers go missing on collision etc. (diff) | |
Backport 8634, fix for bug #464 reported by John
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8635 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_taxonomy.cpp')
| -rw-r--r-- | src/modules/m_taxonomy.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_taxonomy.cpp b/src/modules/m_taxonomy.cpp index c9621d431..240719fe3 100644 --- a/src/modules/m_taxonomy.cpp +++ b/src/modules/m_taxonomy.cpp @@ -38,8 +38,7 @@ class cmd_taxonomy : public command_t 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++) { |
