1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 00:46:38 +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
@@ -56,6 +56,7 @@ class CommandCSTBan : public Command
public:
CommandCSTBan() : Command("TBAN", 3, 3)
{
this->SetDesc("Bans the user for a given length of time");
}
CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> &params)
@@ -100,11 +101,6 @@ class CommandCSTBan : public Command
{
me->SendMessage(source, _("Syntax: TBAN channel nick time"));
}
void OnServHelp(CommandSource &source)
{
me->SendMessage(source, _(" TBAN Bans the user for a given length of time"));
}
};
class CSTBan : public Module