diff options
Diffstat (limited to 'include/modules/fantasy.h')
-rw-r--r-- | include/modules/fantasy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/fantasy.h b/include/modules/fantasy.h index a7944cef9..bb13b959d 100644 --- a/include/modules/fantasy.h +++ b/include/modules/fantasy.h @@ -18,7 +18,7 @@ namespace Event * @param params The params * @return EVENT_STOP to halt processing and not run the command, EVENT_ALLOW to allow the command to be executed */ - virtual EventReturn OnBotFantasy(CommandSource &source, Command *c, ChannelInfo *ci, const std::vector<Anope::string> ¶ms) anope_abstract; + virtual EventReturn OnBotFantasy(CommandSource &source, Command *c, ChanServ::Channel *ci, const std::vector<Anope::string> ¶ms) anope_abstract; }; struct CoreExport BotNoFantasyAccess : Events @@ -30,6 +30,6 @@ namespace Event * @param params The params * @return EVENT_STOP to halt processing and not run the command, EVENT_ALLOW to allow the command to be executed */ - virtual EventReturn OnBotNoFantasyAccess(CommandSource &source, Command *c, ChannelInfo *ci, const std::vector<Anope::string> ¶ms) anope_abstract; + virtual EventReturn OnBotNoFantasyAccess(CommandSource &source, Command *c, ChanServ::Channel *ci, const std::vector<Anope::string> ¶ms) anope_abstract; }; } |