1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 10:43:13 +02:00

Made IRCDProto a Service

This commit is contained in:
Adam
2012-11-23 23:10:41 -05:00
parent 36b1166cf6
commit ded89b0d49
13 changed files with 30 additions and 76 deletions
-5
View File
@@ -85,11 +85,6 @@ void Module::SetAuthor(const Anope::string &nauthor)
this->author = nauthor;
}
IRCDProto *Module::GetIRCDProto()
{
return NULL;
}
ModuleVersion::ModuleVersion(int maj, int min, int pa) : version_major(maj), version_minor(min), version_patch(pa)
{
}
+1 -1
View File
@@ -23,7 +23,7 @@
IRCDProto *IRCD = NULL;
IRCDProto::IRCDProto(const Anope::string &p) : proto_name(p)
IRCDProto::IRCDProto(Module *creator, const Anope::string &p) : Service(creator, "IRCDProto", creator->name), proto_name(p)
{
DefaultPseudoclientModes = "+io";
CanSVSNick = CanSetVHost = CanSetVIdent = CanSNLine = CanSQLine = CanSQLineChannel = CanSZLine = CanSVSHold =