diff options
author | Sadie Powell <sadie@witchery.services> | 2021-05-31 22:57:31 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-06-01 00:21:41 +0100 |
commit | 376053e0acae2a37a8f5c77c8de25ebf8a8395a9 (patch) | |
tree | 4ca67318376e1725c91d61eee5f3961dd6fd176d /src | |
parent | cadc6f48e614fad6c8febf42899f352d9172fa73 (diff) |
Allow protocol modules to declare that the IRCd supports tags.
This is not being used currently but will be soon.
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 9a103df24..c81d18e5f 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -25,7 +25,7 @@ IRCDProto::IRCDProto(Module *creator, const Anope::string &p) : Service(creator, { DefaultPseudoclientModes = "+io"; CanSVSNick = CanSVSJoin = CanSetVHost = CanSetVIdent = CanSNLine = CanSQLine = CanSQLineChannel - = CanSZLine = CanSVSHold = CanCertFP = RequiresID = AmbiguousID = false; + = CanSZLine = CanSVSHold = CanCertFP = CanSendTags = RequiresID = AmbiguousID = false; MaxModes = 3; MaxLine = 512; |