From 7b27a4e49192645b67eddba829a588e9e6d978ee Mon Sep 17 00:00:00 2001 From: Naram Qashat Date: Mon, 2 Aug 2010 19:17:17 -0400 Subject: [PATCH] Fix NS SASET to actually work. --- modules/core/ns_saset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/ns_saset.cpp b/modules/core/ns_saset.cpp index c42a1939f..6de0a66a7 100644 --- a/modules/core/ns_saset.cpp +++ b/modules/core/ns_saset.cpp @@ -53,7 +53,7 @@ class CommandNSSASet : public Command if (c) { Anope::string cmdparams = na->nc->display; - for (std::vector::const_iterator it = params.begin() + 1; it != params.end(); ++it) + for (std::vector::const_iterator it = params.begin() + 2; it != params.end(); ++it) cmdparams += " " + *it; mod_run_cmd(NickServ, u, c, params[1], cmdparams); }