From 02ac3a403cb973acf07f1253c6238b4f20ad5a01 Mon Sep 17 00:00:00 2001 From: Robby Date: Wed, 6 Mar 2019 03:34:25 +0100 Subject: Fix the ChanServ SET SUCCESSOR syntax to show that a nickname is optional. --- modules/commands/cs_set.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/cs_set.cpp') diff --git a/modules/commands/cs_set.cpp b/modules/commands/cs_set.cpp index cd1b06ab1..e83ed5476 100644 --- a/modules/commands/cs_set.cpp +++ b/modules/commands/cs_set.cpp @@ -947,7 +947,7 @@ class CommandCSSetSuccessor : public Command CommandCSSetSuccessor(Module *creator, const Anope::string &cname = "chanserv/set/successor") : Command(creator, cname, 1, 2) { this->SetDesc(_("Set the successor for a channel")); - this->SetSyntax(_("\037channel\037 \037nick\037")); + this->SetSyntax(_("\037channel\037 [\037nick\037]")); } void Execute(CommandSource &source, const std::vector ¶ms) anope_override -- cgit