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:
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user