diff options
author | Adam <Adam@anope.org> | 2012-11-26 22:57:51 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-11-26 23:09:26 -0500 |
commit | 8a6962fc363410928dc8d7c197fd3fbf3e315597 (patch) | |
tree | 7eac6e127be5e4b691e96a1053f114870cc449aa /src/protocol.cpp | |
parent | f23bad140b3abf3350c552c27c4e1d995337ce79 (diff) |
Keep track on what ircds we can svsjoin, add an svspart method
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 315b3955c..d8c9cd635 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -26,8 +26,8 @@ IRCDProto *IRCD = NULL; 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 = - CanSVSO = CanCertFP = RequiresID = false; + CanSVSNick = CanSVSJoin = CanSetVHost = CanSetVIdent = CanSNLine = CanSQLine = CanSQLineChannel + = CanSZLine = CanSVSHold = CanSVSO = CanCertFP = RequiresID = false; MaxModes = 3; if (IRCD == NULL) |