1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 22:26:39 +02:00

Fix subtle typo in command initializer list

This commit is contained in:
Adam
2016-04-05 16:01:16 -04:00
parent 79e7c3f98a
commit 21e1913c0f
+1 -1
View File
@@ -117,7 +117,7 @@ void CommandSource::Reply(const Anope::string &message)
this->reply->SendMessage(this->service, tok);
}
Command::Command(Module *o, const Anope::string &sname, size_t minparams, size_t maxparams) : Service(o, "Command", sname), max_params(maxparams), min_params(minparams), module(owner)
Command::Command(Module *o, const Anope::string &sname, size_t minparams, size_t maxparams) : Service(o, "Command", sname), max_params(maxparams), min_params(minparams), module(o)
{
allow_unregistered = require_user = false;
}