diff options
Diffstat (limited to 'modules/nickserv/info.cpp')
-rw-r--r-- | modules/nickserv/info.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/nickserv/info.cpp b/modules/nickserv/info.cpp index 447554afb..9b916ff60 100644 --- a/modules/nickserv/info.cpp +++ b/modules/nickserv/info.cpp @@ -107,14 +107,6 @@ class CommandNSInfo : public Command if (!na->GetAccount()->GetEmail().empty() && (show_hidden || !na->GetAccount()->HasFieldS("HIDE_EMAIL"))) info[_("Email address")] = na->GetAccount()->GetEmail(); - if (source.HasPriv("hostserv/auspex")) - { - for (HostServ::VHost *vhost : na->GetAccount()->GetRefs<HostServ::VHost *>()) - { - info[_("VHost")] = vhost->Mask() + (vhost->IsDefault() ? " (default)" : ""); - } - } - EventManager::Get()->Dispatch(&Event::NickInfo::OnNickInfo, source, na, info, show_hidden); std::vector<Anope::string> replies; |