void OnWhois(Whois::Context& whois) override { if (whois.GetTarget()->IsModeSet(bm)) { whois.SendLine(RPL_WHOISBOT, "is a bot on " + ServerInstance->Config->Network); } }
void OnWhois(Whois::Context& whois) override { // If the extban is disabled we don't expose users location. if (!extban) return; std::string* cc = ext.get(whois.GetTarget()); if (!cc) cc = SetExt(whois.GetTarget()); whois.SendLine(RPL_WHOISCOUNTRY, *cc, "is located in this country"); }