diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-09 18:51:03 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-09 18:51:03 +0000 |
commit | 6d7fe69cdf9ff1b8fcb149734753c2800894b68e (patch) | |
tree | a35c951fa0e129e401081a25dc8253ff77b49de0 /src/protocol.cpp | |
parent | 314ef609001bd511c7a7ef243191bcd471bffa1c (diff) |
Add support for oper-only quit messages.
This currently only works on InspIRCd but I believe that other
servers also support this.
Diffstat (limited to 'src/protocol.cpp')
-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 a45985a0d..7a167582a 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -151,7 +151,7 @@ void IRCDProto::SendTagmsg(const MessageSource &source, const Anope::string &des Uplink::Send(tags, source, "TAGMSG", dest); } -void IRCDProto::SendQuit(User *u, const Anope::string &buf) +void IRCDProto::SendQuit(User *u, const Anope::string &buf, const Anope::string &operbuf) { if (!buf.empty()) Uplink::Send(u, "QUIT", buf); |