1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 04:16:39 +02:00

Update the core message parser to allow parsing IRCv3 message tags.

This commit is contained in:
Peter Powell
2019-03-30 15:48:33 +00:00
committed by P. Powell
parent d9de4ddd82
commit e43bc49ba7
3 changed files with 135 additions and 27 deletions
+7
View File
@@ -502,3 +502,10 @@ unsigned IRCDMessage::GetParamCount() const
{
return this->param_count;
}
void IRCDMessage::Run(MessageSource &source, const std::vector<Anope::string> &params, const Anope::map<Anope::string> &tags)
{
// Most IRCds don't support message tags yet so use the tagless variant.
Run(source, params);
}