1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 16:13:12 +02:00

Add NickAlias::GetVhostMask for getting the vident@vhost.

This commit is contained in:
Sadie Powell
2024-03-04 10:36:10 +00:00
parent d15ac93a8f
commit db4f845fe7
11 changed files with 30 additions and 69 deletions
+2 -4
View File
@@ -54,10 +54,8 @@ public:
if (na && source.GetAccount() == na->nc && na->HasVhost())
{
this->Sync(na);
if (!na->GetVhostIdent().empty())
source.Reply(_("All vhosts in the group \002%s\002 have been set to \002%s\002@\002%s\002."), source.nc->display.c_str(), na->GetVhostIdent().c_str(), na->GetVhostHost().c_str());
else
source.Reply(_("All vhosts in the group \002%s\002 have been set to \002%s\002."), source.nc->display.c_str(), na->GetVhostHost().c_str());
source.Reply(_("All vhosts in the group \002%s\002 have been set to \002%s\002."),
source.nc->display.c_str(), na->GetVhostMask().c_str());
}
else
source.Reply(HOST_NOT_ASSIGNED);