summaryrefslogtreecommitdiff
path: root/include/commands.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-11-26 10:15:48 -0600
committerAdam <Adam@anope.org>2010-12-12 19:36:19 -0500
commit2b10cc84eab6cb9253611a090eb3ef67a6d3d0a7 (patch)
treeba269569cc768e14aeb49f25d639a955055ad337 /include/commands.h
parentcb6ef574e3df5cc846247450b74ca37d265f319e (diff)
Added /bs set msg
Diffstat (limited to 'include/commands.h')
-rw-r--r--include/commands.h5
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.