diff options
author | Peter Powell <petpow@saberuk.com> | 2019-02-04 15:26:53 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-02-04 15:26:53 +0000 |
commit | a7b52308dba32becb40522b76b1bfee8e37470fe (patch) | |
tree | bb34ab6743b7a177f832df1ec4455ff285580588 /src/modules | |
parent | 4690bbdee8b5a91938e3e2ac86f606951cccf2e8 (diff) |
m_check: improve the output of the member key.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_check.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 39f0d190a..3e9e46a3e 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -259,9 +259,9 @@ 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("%-3u %s%s (%s@%s) %s ", clonecount.global, - i->second->GetAllPrefixChars().c_str(), i->first->nick.c_str(), - i->first->ident.c_str(), i->first->GetDisplayedHost().c_str(), i->first->GetRealName().c_str())); + context.Write("member", InspIRCd::Format("%u %s%s (%s)", clonecount.global, + i->second->GetAllPrefixChars().c_str(), i->first->GetFullHost().c_str(), + i->first->GetRealName().c_str())); } const ModeParser::ListModeList& listmodes = ServerInstance->Modes->GetListModes(); |