aboutsummaryrefslogtreecommitdiff
path: root/src/cmd_oper.cpp
diff options
context:
space:
mode:
authorGravatar brain2007-09-20 22:51:49 +0000
committerGravatar brain2007-09-20 22:51:49 +0000
commit03fd5520ec3ce775b569d5790bcbf650147fe44c (patch)
tree925b2f3d5c0ce4d4b02006ed055e30923c4ddf8d /src/cmd_oper.cpp
parentFixed m_saquit to direct the command to the user's server and from there send... (diff)
As per request from Bricker, change the format of the 'you are now an oper of type <...>' to 'You are now a/an <...>'
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8047 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_oper.cpp')
-rw-r--r--src/cmd_oper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_oper.cpp b/src/cmd_oper.cpp
index 8d1c753a6..de5bd47e6 100644
--- a/src/cmd_oper.cpp
+++ b/src/cmd_oper.cpp
@@ -103,7 +103,7 @@ CmdResult cmd_oper::Handle (const char** parameters, int pcnt, userrec *user)
{
/* correct oper credentials */
ServerInstance->SNO->WriteToSnoMask('o',"%s (%s@%s) is now an IRC operator of type %s (using oper '%s')",user->nick,user->ident,user->host,irc::Spacify(OperType),parameters[0]);
- user->WriteServ("381 %s :You are now an IRC operator of type %s",user->nick,irc::Spacify(OperType));
+ user->WriteServ("381 %s :You are now %s %s",user->nick, strchr("aeiou", *OperType) ? "an" : "a", irc::Spacify(OperType));
if (!user->IsModeSet('o'))
user->Oper(OperType);
}