1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 00:03:12 +02:00

Add help for /cs set keepmodes

This commit is contained in:
Adam
2013-11-16 10:20:35 -05:00
parent cc2a999b4e
commit 316c280a57
+10
View File
@@ -374,6 +374,16 @@ class CommandCSSetKeepModes : public Command
else
this->OnSyntaxError(source, "PEACE");
}
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
{
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_("Enables or disables keepmodes for the given channel. If keep\n"
"modes is enabled, services will remember modes set on the channel\n"
"and attempt to re-set them the next time the channel is created."));
return true;
}
};
class CommandCSSetPeace : public Command