1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 06:43:14 +02:00

Fix the ChanServ SET SUCCESSOR syntax to show that a nickname is optional.

This commit is contained in:
Robby
2019-03-06 03:34:25 +01:00
parent e1e840a87d
commit 02ac3a403c
+1 -1
View File
@@ -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<Anope::string> &params) anope_override