diff options
Diffstat (limited to 'modules/commands/help.cpp')
-rw-r--r-- | modules/commands/help.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/help.cpp b/modules/commands/help.cpp index dc0c3864d..a7356c0d0 100644 --- a/modules/commands/help.cpp +++ b/modules/commands/help.cpp @@ -45,7 +45,7 @@ class CommandHelp : public Command if (cmd != it->first && bi->commands.count(cmd)) continue; - service_reference<Command> c(info.name); + service_reference<Command> c("Command", info.name); if (!c) continue; if (!Config->HidePrivilegedCommands || info.permission.empty() || u->HasCommand(info.permission)) @@ -71,7 +71,7 @@ class CommandHelp : public Command CommandInfo &info = it->second; - service_reference<Command> c(info.name); + service_reference<Command> c("Command", info.name); if (!c) continue; |