diff options
author | Adam <Adam@anope.org> | 2013-08-01 13:16:18 +0000 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-01 13:39:35 +0000 |
commit | 1e625b6837fdf96616cfc49700aa28d184a7c171 (patch) | |
tree | 6b6f06deaf769dd6b1a7853f90d26183828986f1 /include/commands.h | |
parent | 402c624e455d13cc811bef2e8d1639846e892a34 (diff) |
Use MessageSource as the source for many IRCDProto funcs
Keep track of what user modes are oper only/server only/etc
Diffstat (limited to 'include/commands.h')
-rw-r--r-- | include/commands.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands.h b/include/commands.h index 06bb74c7b..abd01e41f 100644 --- a/include/commands.h +++ b/include/commands.h @@ -46,7 +46,7 @@ struct CommandInfo struct CoreExport CommandReply { virtual ~CommandReply() { } - virtual void SendMessage(const BotInfo *source, const Anope::string &msg) = 0; + virtual void SendMessage(BotInfo *source, const Anope::string &msg) = 0; }; /* The source for a command */ |