diff options
-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; } } |