diff options
author | Peter Powell <petpow@saberuk.com> | 2019-06-04 14:09:27 +0100 |
---|---|---|
committer | P. Powell <petpow@saberuk.com> | 2019-09-23 13:23:02 +0100 |
commit | b2c3775b58e4c2bde26707854d0c00792f4c120e (patch) | |
tree | 18bdd83df043642ff195257151134340c1e43c6b /modules/protocol/inspircd3.cpp | |
parent | b311248bed20692239e96e1473f4a890d1218dc1 (diff) |
Update for the 1205 INVITE syntax.
Diffstat (limited to 'modules/protocol/inspircd3.cpp')
-rw-r--r-- | modules/protocol/inspircd3.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp index 563072d50..15aca6913 100644 --- a/modules/protocol/inspircd3.cpp +++ b/modules/protocol/inspircd3.cpp @@ -141,6 +141,11 @@ class InspIRCd3Proto : public IRCDProto } } + void SendInvite(const MessageSource &source, const Channel *c, User *u) anope_override + { + UplinkSocket::Message(source) << "INVITE " << u->GetUID() << " " << c->name << " " << c->creation_time; + } + void SendTopic(const MessageSource &source, Channel *c) anope_override { if (Servers::Capab.count("SVSTOPIC")) |