summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-02-25 18:13:09 +0100
committerAttila Molnar <attilamolnar@hush.com>2016-02-25 18:13:09 +0100
commit34cb5b67fb5a1e0fddc04c00fc91092decef80b4 (patch)
tree21feb7b68528b2e5fd4db4a4b511e3526726eefc
parent761e6d75ba37b984998952940ed681e79e456142 (diff)
cmd_commands Send the RPL_COMMANDS numeric with User::WriteNumeric()
-rw-r--r--src/coremods/core_info/cmd_commands.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/coremods/core_info/cmd_commands.cpp b/src/coremods/core_info/cmd_commands.cpp
index e15d178f5..b6cc8e34d 100644
--- a/src/coremods/core_info/cmd_commands.cpp
+++ b/src/coremods/core_info/cmd_commands.cpp
@@ -41,13 +41,12 @@ CmdResult CommandCommands::Handle (const std::vector<std::string>&, User *user)
continue;
Module* src = i->second->creator;
- list.push_back(InspIRCd::Format(":%s %03d %s :%s %s %d %d", ServerInstance->Config->ServerName.c_str(),
- RPL_COMMANDS, user->nick.c_str(), i->second->name.c_str(), src->ModuleSourceFile.c_str(),
+ list.push_back(InspIRCd::Format("%s %s %d %d", i->second->name.c_str(), src->ModuleSourceFile.c_str(),
i->second->min_params, i->second->Penalty));
}
std::sort(list.begin(), list.end());
for(unsigned int i=0; i < list.size(); i++)
- user->Write(list[i]);
+ user->WriteNumeric(RPL_COMMANDS, list[i]);
user->WriteNumeric(RPL_COMMANDSEND, "End of COMMANDS list");
return CMD_SUCCESS;
}