diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-26 16:33:48 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-26 16:45:28 +0000 |
commit | 6be4df3b395bd11ee1d936f6f1c9b63553441d38 (patch) | |
tree | ff004a247f7f77d719ba775ed6e4f7e3de5e6798 /modules/protocol/plexus.cpp | |
parent | 4789751e5002a0667ca9080bcb461b0817db31b2 (diff) |
Remove several string format IRCDProto function overloads.
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r-- | modules/protocol/plexus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index fe0d37e22..7e3a7a2e6 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -36,7 +36,7 @@ public: MaxModes = 4; } - void SendSVSKillInternal(const MessageSource &source, User *targ, const Anope::string &reason) override { hybrid->SendSVSKillInternal(source, targ, reason); } + void SendSVSKill(const MessageSource &source, User *targ, const Anope::string &reason) override { hybrid->SendSVSKill(source, targ, reason); } void SendGlobalNotice(BotInfo *bi, const Server *dest, const Anope::string &msg) override { hybrid->SendGlobalNotice(bi, dest, msg); } void SendGlobalPrivmsg(BotInfo *bi, const Server *dest, const Anope::string &msg) override { hybrid->SendGlobalPrivmsg(bi, dest, msg); } void SendSQLine(User *u, const XLine *x) override { hybrid->SendSQLine(u, x); } @@ -50,7 +50,7 @@ public: void SendSVSHold(const Anope::string &nick, time_t t) override { hybrid->SendSVSHold(nick, t); } void SendSVSHoldDel(const Anope::string &nick) override { hybrid->SendSVSHoldDel(nick); } - void SendGlobopsInternal(const MessageSource &source, const Anope::string &buf) override + void SendGlobops(const MessageSource &source, const Anope::string &buf) override { Uplink::Send(source, "OPERWALL", buf); } |