1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 17:06:37 +02:00

Made the help command description code more sane

This commit is contained in:
Adam
2011-02-11 03:12:39 -05:00
parent 7bdf592f7e
commit 2529ff6dae
148 changed files with 215 additions and 939 deletions
+1 -5
View File
@@ -48,6 +48,7 @@ class CommandCSAppendTopic : public Command
public:
CommandCSAppendTopic() : Command("APPENDTOPIC", 2, 2)
{
this->SetDesc("Add text to a channels topic");
}
CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> &params)
@@ -100,11 +101,6 @@ class CommandCSAppendTopic : public Command
{
me->SendMessage(source, _("Syntax: APPENDTOPIC channel text"));
}
void OnServHelp(CommandSource &source)
{
me->SendMessage(source, _(" APPENDTOPIC Add text to a channels topic"));
}
};
class CSAppendTopic : public Module