diff options
Diffstat (limited to 'modules/commands/help.cpp')
-rw-r--r-- | modules/commands/help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/help.cpp b/modules/commands/help.cpp index f6e459bde..7daf74dc4 100644 --- a/modules/commands/help.cpp +++ b/modules/commands/help.cpp @@ -153,7 +153,7 @@ class CommandHelp : public Command // Allow unregistered users to see help for commands that they explicitly request help for const Anope::string &subcommand = params.size() > max ? params[max] : ""; - source.command = full_command; + source.command = it->first; if (!c->OnHelp(source, subcommand)) continue; |