mirror of
https://github.com/anope/anope.git
synced 2026-07-06 16:33:14 +02:00
@@ -28,7 +28,7 @@ class CommandHSGroup : public Command
|
||||
for (unsigned i = 0; i < na->nc->aliases->size(); ++i)
|
||||
{
|
||||
NickAlias *nick = na->nc->aliases->at(i);
|
||||
if (nick)
|
||||
if (nick && nick != na)
|
||||
{
|
||||
nick->SetVhost(na->GetVhostIdent(), na->GetVhostHost(), na->GetVhostCreator());
|
||||
FOREACH_MOD(OnSetVhost, (nick));
|
||||
|
||||
@@ -114,7 +114,7 @@ class CommandHSSetAll : public Command
|
||||
for (unsigned i = 0; i < na->nc->aliases->size(); ++i)
|
||||
{
|
||||
NickAlias *nick = na->nc->aliases->at(i);
|
||||
if (nick)
|
||||
if (nick && nick != na)
|
||||
nick->SetVhost(na->GetVhostIdent(), na->GetVhostHost(), na->GetVhostCreator());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user