1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 03:23:13 +02:00
This commit is contained in:
Adam
2012-01-25 15:48:07 -05:00
parent e88e37c59b
commit 52eaa7d6d6
53 changed files with 174 additions and 159 deletions
+2 -2
View File
@@ -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;