diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/coremods/core_who.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_who.cpp b/src/coremods/core_who.cpp index d79006e84..739c675a9 100644 --- a/src/coremods/core_who.cpp +++ b/src/coremods/core_who.cpp @@ -191,7 +191,7 @@ void CommandWho::SendWhoLine(User* user, const std::vector<std::string>& parms, if (!memb) memb = get_first_visible_channel(u); - Numeric::Numeric wholine(352); + Numeric::Numeric wholine(RPL_WHOREPLY); wholine.push(memb ? memb->chan->name : "*").push(u->ident); wholine.push(opt_showrealhost ? u->host : u->dhost); if (!ServerInstance->Config->HideWhoisServer.empty() && !user->HasPrivPermission("servers/auspex")) |