Changed rpl_isoper numritc to show opertype

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@770 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2004-05-01 18:12:13 +00:00
parent 877a15fc3d
commit a95308ab4c

View File

@ -685,7 +685,8 @@ void handle_whois(char **parameters, int pcnt, userrec *user)
}
if (strchr(dest->modes,'o'))
{
WriteServ(user->fd,"313 %s %s :is an IRC operator",user->nick, dest->nick);
WriteServ(user->fd,"313 %s %s :is %s %s on %s",user->nick, dest->nick,
(strchr("aeiou",dest->oper[0]) ? "an" : "a"),dest->oper, Network);
}
FOREACH_MOD OnWhois(user,dest);
if (!strcasecmp(user->server,dest->server))