1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 10:53:14 +02:00

Fix formatting messages on ngircd.

This commit is contained in:
Sadie Powell
2024-02-22 19:54:09 +00:00
parent a99a00d7c5
commit b26f198489
+1 -1
View File
@@ -154,7 +154,7 @@ public:
bool Format(Anope::string &message, const Anope::map<Anope::string> &tags, const MessageSource &source, const Anope::string &command, const std::vector<Anope::string> &params) override
{
return IRCDProto::Format(message, tags, source.GetSource().empty() ? source : Me, command, params);
return IRCDProto::Format(message, tags, source.GetSource().empty() ? Me : source, command, params);
}
};