diff options
| author | 2022-03-21 21:38:45 +0000 | |
|---|---|---|
| committer | 2022-03-21 21:38:45 +0000 | |
| commit | 8addeb78b7ec6ed8d30a39adee28eab45a5273c7 (patch) | |
| tree | 8165dd631d8c1be0828fe1c5b0bbbf171710621f /src/modules/m_check.cpp | |
| parent | m_deaf: Correct default return in HandleUser(). (diff) | |
Fix real name formatting bleeding into IRC messages.
Diffstat (limited to 'src/modules/m_check.cpp')
| -rw-r--r-- | src/modules/m_check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 91f976a2c..0934f006d 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -276,7 +276,7 @@ class CommandCheck : public Command * Unlike Asuka, I define a clone as coming from the same host. --w00t */ const UserManager::CloneCounts& clonecount = ServerInstance->Users->GetCloneCounts(i->first); - context.Write("member", InspIRCd::Format("%u %s%s (%s)", clonecount.global, + context.Write("member", InspIRCd::Format("%u %s%s (%s\x0F)", clonecount.global, i->second->GetAllPrefixChars().c_str(), i->first->GetFullHost().c_str(), i->first->GetRealName().c_str())); } |
