mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-03 05:53:12 +02:00
mistyped IsULine
This commit is contained in:
+2
-2
@@ -2364,12 +2364,12 @@ void over_notice(aClient *cptr, aClient *sptr, aChannel *chptr, char *key)
|
||||
sendto_umode(UMODE_EYES, "*** OperOverride -- %s (%s@%s) INVITEWALK %s",sptr->name,
|
||||
sptr->user->username, sptr->user->realhost, chptr->chname);
|
||||
}
|
||||
else if (IsOper(sptr) && !IsUline(sptr) && (chptr->mode.mode & MODE_RGSTRONLY) &&
|
||||
else if (IsOper(sptr) && !IsULine(sptr) && (chptr->mode.mode & MODE_RGSTRONLY) &&
|
||||
!IsARegNick(sptr)) {
|
||||
sendto_umode(UMODE_EYES, "*** OperOverride -- %s (%s@%s) REGNICKWALK %s",sptr->name,
|
||||
sptr->user->username, sptr->user->realhost, chptr->chname);
|
||||
}
|
||||
else if (IsOper(sptr) && !IsUline(sptr) && (chptr->mode.limit && chptr->users >= chptr->mode.limit))
|
||||
else if (IsOper(sptr) && !IsULine(sptr) && (chptr->mode.limit && chptr->users >= chptr->mode.limit))
|
||||
{
|
||||
sendto_umode(UMODE_EYES, "*** OperOverride -- %s (%s@%s) LIMITWALK %s",sptr->name,
|
||||
sptr->user->username, sptr->user->realhost, chptr->chname);
|
||||
|
||||
Reference in New Issue
Block a user