aboutsummaryrefslogtreecommitdiffstats
path: root/src/commands/cmd_names.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2013-06-12 20:32:10 +0200
committerGravatar attilamolnar2013-06-12 20:32:10 +0200
commitcfa32a6561e0152ebbd7135eaec9f7c794c170b1 (patch)
tree4c2d00aeee9de1014a336494b1e4ac3935f5b51b /src/commands/cmd_names.cpp
parentChange command name parameter of OnPostCommand to be a Command* (diff)
CommandParser::LoopCall() changes
- Change function to be static, return a bool - Do not filter duplicates when there are 2 lists (JOIN) - Remove validation of 'extra' parameter, caller must pass either a valid index or -1
Diffstat (limited to 'src/commands/cmd_names.cpp')
-rw-r--r--src/commands/cmd_names.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_names.cpp b/src/commands/cmd_names.cpp
index 0c06b636f..1f0de91f1 100644
--- a/src/commands/cmd_names.cpp
+++ b/src/commands/cmd_names.cpp
@@ -52,7 +52,7 @@ CmdResult CommandNames::Handle (const std::vector<std::string>& parameters, User
return CMD_SUCCESS;
}
- if (ServerInstance->Parser->LoopCall(user, this, parameters, 0))
+ if (CommandParser::LoopCall(user, this, parameters, 0))
return CMD_SUCCESS;
c = ServerInstance->FindChan(parameters[0]);