diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-10 03:09:05 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-10 03:09:05 +0000 |
commit | bdbe2050806e349e690fca39e3cea2d304ca76af (patch) | |
tree | b35e2feba2316fc2a0503a62b4380e0b8d3a7965 | |
parent | 9ed56e9e02c0532a981d6f30c8e03a29dafc56da (diff) |
Fix WHOISNOTICE parameters being sent backwards
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12419 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_showwhois.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp index 2d65d1669..c8b4f6219 100644 --- a/src/modules/m_showwhois.cpp +++ b/src/modules/m_showwhois.cpp @@ -124,8 +124,8 @@ class ModuleShowwhois : public Module std::vector<std::string> params; params.push_back(dest->server); params.push_back("WHOISNOTICE"); - params.push_back(source->uuid); params.push_back(dest->uuid); + params.push_back(source->uuid); ServerInstance->PI->SendEncapsulatedData(params); } } |