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 /modules/protocol/inspircd.cpp | |
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 'modules/protocol/inspircd.cpp')
-rw-r--r-- | modules/protocol/inspircd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/protocol/inspircd.cpp b/modules/protocol/inspircd.cpp index 94edf1737..bedb30ca3 100644 --- a/modules/protocol/inspircd.cpp +++ b/modules/protocol/inspircd.cpp @@ -66,6 +66,7 @@ class InspIRCdProto : public IRCDProto CanSZLine = true; CanSVSHold = true; CanCertFP = true; + CanSendTags = true; RequiresID = true; MaxModes = 20; MaxLine = 4096; |