diff options
author | Adam <Adam@anope.org> | 2010-11-26 10:15:48 -0600 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-12-12 19:36:19 -0500 |
commit | 2b10cc84eab6cb9253611a090eb3ef67a6d3d0a7 (patch) | |
tree | ba269569cc768e14aeb49f25d639a955055ad337 /include/commands.h | |
parent | cb6ef574e3df5cc846247450b74ca37d265f319e (diff) |
Added /bs set msg
Diffstat (limited to 'include/commands.h')
-rw-r--r-- | include/commands.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/commands.h b/include/commands.h index e247fc388..9f4c5a928 100644 --- a/include/commands.h +++ b/include/commands.h @@ -57,9 +57,12 @@ struct CommandSource /* Whether or not this was a fantasy command */ bool fantasy; + std::list<Anope::string> reply; + + ~CommandSource(); + void Reply(LanguageString message, ...); void Reply(const char *message, ...); - void Reply(const Anope::string &message); }; /** Every services command is a class, inheriting from Command. |