From b2c3775b58e4c2bde26707854d0c00792f4c120e Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Tue, 4 Jun 2019 14:09:27 +0100 Subject: [PATCH] Update for the 1205 INVITE syntax. --- modules/protocol/inspircd3.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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"))