summaryrefslogtreecommitdiff
path: root/modules/core/hs_help.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-11-24 21:40:56 -0600
committerAdam <Adam@anope.org>2010-12-12 19:36:19 -0500
commitcb6ef574e3df5cc846247450b74ca37d265f319e (patch)
tree8ce3374a537c312af63c78125bfea4622bb188f0 /modules/core/hs_help.cpp
parent37e02a3594fdddc3d5a3df0501c528f42db6c4da (diff)
Send replies from fantasy commands back to the channel, this will be expanded on later
Diffstat (limited to 'modules/core/hs_help.cpp')
-rw-r--r--modules/core/hs_help.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/hs_help.cpp b/modules/core/hs_help.cpp
index 45d4d2314..e2f49a3e7 100644
--- a/modules/core/hs_help.cpp
+++ b/modules/core/hs_help.cpp
@@ -21,9 +21,9 @@ class CommandHSHelp : public Command
this->SetFlag(CFLAG_ALLOW_UNREGISTERED);
}
- CommandReturn Execute(User *u, const std::vector<Anope::string> &params)
+ CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> &params)
{
- mod_help_cmd(HostServ, u, params[0]);
+ mod_help_cmd(HostServ, source.u, params[0]);
return MOD_CONT;
}