diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-30 17:09:39 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-30 17:09:39 +0000 |
commit | 361454d367661f9812d74c6a703964885f9b6ac4 (patch) | |
tree | 41e2369b577acead914543da180e6c2d2cabfaae /src/cmd_topic.cpp | |
parent | 677eda6ffac89af794c263127b14d1e08ab90ceb (diff) |
Fix the text in this numeric
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6458 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_topic.cpp')
-rw-r--r-- | src/cmd_topic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_topic.cpp b/src/cmd_topic.cpp index 770b95660..f9abaa309 100644 --- a/src/cmd_topic.cpp +++ b/src/cmd_topic.cpp @@ -68,7 +68,7 @@ CmdResult cmd_topic::Handle (const char** parameters, int pcnt, userrec *user) } if ((Ptr->modes[CM_TOPICLOCK]) && (Ptr->GetStatus(user) < STATUS_HOP)) { - user->WriteServ("482 %s %s :You must be at least a half-operator to change modes on this channel", user->nick, Ptr->name); + user->WriteServ("482 %s %s :You must be at least a half-operator to change the topic on this channel", user->nick, Ptr->name); return CMD_FAILURE; } } |