diff options
-rw-r--r-- | modules/core/cs_saset.cpp | 2 | ||||
-rw-r--r-- | modules/core/cs_set.cpp | 2 | ||||
-rw-r--r-- | modules/extra/cs_set_misc.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/cs_saset.cpp b/modules/core/cs_saset.cpp index ba4df0c80..cb749a3c3 100644 --- a/modules/core/cs_saset.cpp +++ b/modules/core/cs_saset.cpp @@ -19,7 +19,7 @@ class CommandCSSASet : public Command CommandCSSASet(Module *creator) : Command(creator, "chanserv/saset", 2, 3, "chanserv/saset") { this->SetDesc(_("Forcefully set channel options and information")); - this->SetSyntax(_("\002channel\002 \037option\037 \037parameters\037")); + this->SetSyntax(_("\037option\037 \037channel\037 \037parameters\037")); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) diff --git a/modules/core/cs_set.cpp b/modules/core/cs_set.cpp index c5ab3cbe5..8b5ca1f61 100644 --- a/modules/core/cs_set.cpp +++ b/modules/core/cs_set.cpp @@ -19,7 +19,7 @@ class CommandCSSet : public Command CommandCSSet(Module *creator) : Command(creator, "chanserv/set", 2, 3) { this->SetDesc(_("Set channel options and information")); - this->SetSyntax(_("\037channel\037 \037option\037 \037parameters\037")); + this->SetSyntax(_("\037option\037 \037channel\037 \037parameters\037")); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) diff --git a/modules/extra/cs_set_misc.cpp b/modules/extra/cs_set_misc.cpp index 03c498b07..000e25ab1 100644 --- a/modules/extra/cs_set_misc.cpp +++ b/modules/extra/cs_set_misc.cpp @@ -19,7 +19,7 @@ class CommandCSSetMisc : public Command CommandCSSetMisc(Module *creator, const Anope::string &cname, const Anope::string &cdesc, const Anope::string &cpermission = "") : Command(creator, "chanserv/set/" + cname, 1, 2, cpermission), Desc(cdesc) { this->SetDesc(cdesc); - this->SetSyntax(_("\037channel\037 \037option\037 \037parameters\037")); + this->SetSyntax(_("\037channel\037 \037parameters\037")); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) |