From e43bc49ba73840af183b70a1069c9b50ba72eb59 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sat, 30 Mar 2019 15:48:33 +0000 Subject: Update the core message parser to allow parsing IRCv3 message tags. --- src/protocol.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/protocol.cpp') diff --git a/src/protocol.cpp b/src/protocol.cpp index 3daa9f136..dd2595992 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -502,3 +502,10 @@ unsigned IRCDMessage::GetParamCount() const { return this->param_count; } + +void IRCDMessage::Run(MessageSource &source, const std::vector ¶ms, const Anope::map &tags) +{ + // Most IRCds don't support message tags yet so use the tagless variant. + Run(source, params); +} + -- cgit