1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 23:36:39 +02:00

Fix a typo in UnrealIRCd's SendGlobops.

This commit is contained in:
Sadie Powell
2024-02-26 17:23:15 +00:00
parent 2962a0be8c
commit d914febbec
+1 -1
View File
@@ -315,7 +315,7 @@ private:
void SendGlobops(const MessageSource &source, const Anope::string &buf) override
{
Uplink::Send("SENDUMODE", 'o', "From " + source.GetName() + ": " < buf);
Uplink::Send("SENDUMODE", 'o', "From " + source.GetName() + ": " + buf);
}
void SendSWhois(const MessageSource &source, const Anope::string &who, const Anope::string &mask) override