1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 22:26:38 +02:00

Fixed saset noexpire to set noexpire on the nick it is used on not just the display name

This commit is contained in:
Adam
2010-10-13 14:33:27 -04:00
parent c4075c032e
commit 5e9db23883
11 changed files with 49 additions and 37 deletions
+4 -3
View File
@@ -22,9 +22,10 @@ class CommandNSSetKill : public Command
CommandReturn Execute(User *u, const std::vector<Anope::string> &params)
{
NickCore *nc = findcore(params[0]);
if (!nc)
throw CoreException("NULL nc in CommandNSSetKill");
NickAlias *na = findnick(params[0]);
if (!na)
throw CoreException("NULL na in CommandNSSetKill");
NickCore *nc = na->nc;
Anope::string param = params[1];
Anope::string arg = params.size() > 2 ? params[2] : "";