From a75afb597b8b4f7e342c393bc3dea868e66f9b4c Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 22 Feb 2024 13:23:18 +0000 Subject: Add the IRCv3 reply tag to messages sent as responses to a user. --- include/commands.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/commands.h') diff --git a/include/commands.h b/include/commands.h index 1778dd4d9..ed318e60a 100644 --- a/include/commands.h +++ b/include/commands.h @@ -44,6 +44,7 @@ struct CoreExport CommandReply { virtual ~CommandReply() = default; virtual void SendMessage(BotInfo *source, const Anope::string &msg) = 0; + virtual void SendMessage(CommandSource& source, const Anope::string &msg); }; /* The source for a command */ -- cgit