diff options
author | Sadie Powell <sadie@witchery.services> | 2021-04-21 14:09:07 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-04-21 14:09:07 +0100 |
commit | fd774bd52a849f3e60c0548250c832d6902215c7 (patch) | |
tree | ca68c16df1c5da9f708717876433cec6346dbf24 /modules/protocol/solanum.cpp | |
parent | 16fac79b7855639de225fd754f39b18268b8549c (diff) |
Remove unnecessary space.
Diffstat (limited to 'modules/protocol/solanum.cpp')
-rw-r--r-- | modules/protocol/solanum.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/solanum.cpp b/modules/protocol/solanum.cpp index bb8f97a2a..787223059 100644 --- a/modules/protocol/solanum.cpp +++ b/modules/protocol/solanum.cpp @@ -284,7 +284,7 @@ struct IRCDMessageNotice : Message::Notice void Run(MessageSource &source, const std::vector<Anope::string> ¶ms, const Anope::map<Anope::string> &tags) anope_override { if (Servers::Capab.count("ECHO")) - UplinkSocket::Message(Me) << "ECHO N " << " " << source.GetSource() << " :" << params[1]; + UplinkSocket::Message(Me) << "ECHO N " << source.GetSource() << " :" << params[1]; Message::Notice::Run(source, params, tags); } @@ -297,7 +297,7 @@ struct IRCDMessagePrivmsg : Message::Privmsg void Run(MessageSource &source, const std::vector<Anope::string> ¶ms, const Anope::map<Anope::string> &tags) anope_override { if (Servers::Capab.count("ECHO")) - UplinkSocket::Message(Me) << "ECHO P " << " " << source.GetSource() << " :" << params[1]; + UplinkSocket::Message(Me) << "ECHO P " << source.GetSource() << " :" << params[1]; Message::Privmsg::Run(source, params, tags); } |