diff options
-rw-r--r-- | src/channels.cpp | 1 | ||||
-rw-r--r-- | src/modules/m_namesx.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index d640af1d8..e4b58a1a4 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -844,6 +844,7 @@ void chanrec::UserList(userrec *user, CUList *ulist) continue; size_t ptrlen = snprintf(ptr, MAXBUF, "%s%s ", this->GetPrefixChar(i->first), i->second.c_str()); + /* OnUserList can change this - reset it back to normal */ i->second = i->first->nick; curlen += ptrlen; diff --git a/src/modules/m_namesx.cpp b/src/modules/m_namesx.cpp index a96ff1991..dd2b32e7b 100644 --- a/src/modules/m_namesx.cpp +++ b/src/modules/m_namesx.cpp @@ -90,6 +90,7 @@ class ModuleNamesX : public Module continue; size_t ptrlen = snprintf(ptr, MAXBUF, "%s%s ", Ptr->GetAllPrefixChars(i->first), i->second.c_str()); + /* OnUserList can change this - reset it back to normal */ i->second = i->first->nick; curlen += ptrlen; ptr += ptrlen; |