diff options
author | lethality <lethality@anope.org> | 2011-07-17 13:08:15 +0100 |
---|---|---|
committer | lethality <lethality@anope.org> | 2011-07-17 13:08:15 +0100 |
commit | 46f2f3bd8f5b0d010144d515a744afb292027b0c (patch) | |
tree | 577383f96a1f11c24dbb567e5edaf48f5459bdc0 /modules | |
parent | cb56d508373b0a28a781d14249386eb643b1773c (diff) |
Fixed some of the extra modules
Diffstat (limited to 'modules')
-rw-r--r-- | modules/extra/cs_appendtopic.cpp | 2 | ||||
-rw-r--r-- | modules/extra/cs_enforce.cpp | 2 | ||||
-rw-r--r-- | modules/extra/cs_entrymsg.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/extra/cs_appendtopic.cpp b/modules/extra/cs_appendtopic.cpp index 41a69f9fc..5b39b8c8c 100644 --- a/modules/extra/cs_appendtopic.cpp +++ b/modules/extra/cs_appendtopic.cpp @@ -42,7 +42,7 @@ class CommandCSAppendTopic : public Command { public: - CommandCSAppendTopic(Module *creator) : Command(creator, "APPENDTOPIC", 2, 2) + CommandCSAppendTopic(Module *creator) : Command(creator, "chanserv/appendtopic", 2, 2) { this->SetDesc(_("Add text to a channels topic")); } diff --git a/modules/extra/cs_enforce.cpp b/modules/extra/cs_enforce.cpp index d258f7458..4ba813ffd 100644 --- a/modules/extra/cs_enforce.cpp +++ b/modules/extra/cs_enforce.cpp @@ -119,7 +119,7 @@ class CommandCSEnforce : public Command } } public: - CommandCSEnforce(Module *creator) : Command(creator, "ENFORCE", 1, 2) + CommandCSEnforce(Module *creator) : Command(creator, "chanserv/enforce", 1, 2) { this->SetDesc(_("Enforce various channel modes and set options")); this->SetSyntax(_("\037channel\037 [\037what\037]")); diff --git a/modules/extra/cs_entrymsg.cpp b/modules/extra/cs_entrymsg.cpp index 28f5603f8..6c4441506 100644 --- a/modules/extra/cs_entrymsg.cpp +++ b/modules/extra/cs_entrymsg.cpp @@ -97,7 +97,7 @@ class CommandEntryMessage : public Command } public: - CommandEntryMessage(Module *creator) : Command(creator, "ENTRYMSG", 2, 3) + CommandEntryMessage(Module *creator) : Command(creator, "chanserv/entrymsg", 2, 3) { this->SetDesc(_("Manage the channel's entry messages")); this->SetSyntax(_("\037channel\037 {ADD|DEL|LIST|CLEAR} [\037message\037|\037num\037]")); |