diff options
Diffstat (limited to 'include/commands.h')
-rw-r--r-- | include/commands.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/commands.h b/include/commands.h index a2d6643fe..8320c531a 100644 --- a/include/commands.h +++ b/include/commands.h @@ -69,15 +69,15 @@ struct CoreExport CommandSource std::list<Anope::string> reply; - ~CommandSource(); - void Reply(const char *message, ...); void Reply(const Anope::string &message); + + void DoReply(); }; /** Every services command is a class, inheriting from Command. */ -class CoreExport Command : public Flags<CommandFlag> +class CoreExport Command : public Flags<CommandFlag>, public Base { Anope::string desc; |