1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 15:53:13 +02:00

Fix NS SASET to actually work.

This commit is contained in:
Naram Qashat
2010-08-02 19:17:17 -04:00
parent 4ffdd7ca6b
commit 7b27a4e491
+1 -1
View File
@@ -53,7 +53,7 @@ class CommandNSSASet : public Command
if (c)
{
Anope::string cmdparams = na->nc->display;
for (std::vector<Anope::string>::const_iterator it = params.begin() + 1; it != params.end(); ++it)
for (std::vector<Anope::string>::const_iterator it = params.begin() + 2; it != params.end(); ++it)
cmdparams += " " + *it;
mod_run_cmd(NickServ, u, c, params[1], cmdparams);
}