1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 16:43:13 +02:00

Remove several string format IRCDProto function overloads.

This commit is contained in:
Sadie Powell
2024-02-26 16:33:48 +00:00
parent 4789751e50
commit 6be4df3b39
14 changed files with 33 additions and 99 deletions
+2 -2
View File
@@ -128,7 +128,7 @@ private:
Uplink::Send("TKL", '+', 'G', x->GetUser(), x->GetHost(), x->by, x->expires, x->created, x->GetReason());
}
void SendSVSKillInternal(const MessageSource &source, User *user, const Anope::string &buf) override
void SendSVSKill(const MessageSource &source, User *user, const Anope::string &buf) override
{
Uplink::Send(source, "SVSKILL", user->GetUID(), buf);
user->KillInternal(source, buf);
@@ -313,7 +313,7 @@ private:
Uplink::Send("SVSPART", user->GetUID(), chan);
}
void SendGlobopsInternal(const MessageSource &source, const Anope::string &buf) override
void SendGlobops(const MessageSource &source, const Anope::string &buf) override
{
Uplink::Send("SENDUMODE", 'o', "From " + source.GetName() + ": " < buf);
}