From: brain Date: Sat, 1 May 2004 18:12:13 +0000 (+0000) Subject: Changed rpl_isoper numritc to show opertype X-Git-Tag: v2.0.23~10836 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=a95308ab4cd7a9cec7627abe350e7b063f63f2ba;p=user%2Fhenk%2Fcode%2Finspircd.git Changed rpl_isoper numritc to show opertype git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@770 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/commands.cpp b/src/commands.cpp index 97aa6e254..7750ea1b6 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -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))