1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 03:06:38 +02:00
This commit is contained in:
Adam
2012-01-25 15:48:07 -05:00
parent e88e37c59b
commit 52eaa7d6d6
53 changed files with 174 additions and 159 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ void CommandSource::Reply(const Anope::string &message)
u->SendMessage(this->service, tok);
}
Command::Command(Module *o, const Anope::string &sname, size_t min_params, size_t max_params) : Service<Command>(o, sname), Flags<CommandFlag>(CommandFlagStrings), MaxParams(max_params), MinParams(min_params), module(owner)
Command::Command(Module *o, const Anope::string &sname, size_t min_params, size_t max_params) : Service(o, "Command", sname), Flags<CommandFlag>(CommandFlagStrings), MaxParams(max_params), MinParams(min_params), module(owner)
{
}