From a7b52308dba32becb40522b76b1bfee8e37470fe Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Mon, 4 Feb 2019 15:26:53 +0000 Subject: m_check: improve the output of the member key. --- src/modules/m_check.cpp | 6 +++--- 1 file 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(); -- cgit v1.2.3