diff options
author | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-28 22:12:36 +0000 |
---|---|---|
committer | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-28 22:12:36 +0000 |
commit | 0b64cbc1d28bd20316ff7bfdb908b9b1eec63641 (patch) | |
tree | ef6d367d211e99bb4bb79c2a61fac5a035ec4fef | |
parent | fa622b4e9f7212e30052536c7788139b736747f5 (diff) |
renaming to guestnick was not working properly
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2594 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/nickserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nickserv.c b/src/nickserv.c index 0122f7517..de9b6de88 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -67,7 +67,7 @@ class NickServCollide : public Timer { /* If they identified or don't exist anymore, don't kill them. */ User *u = finduser(na->nick); - if (!u || nick_identified(u) || u->my_signon > this->GetSetTime()) + if (!u || u->nc == na->nc || u->my_signon > this->GetSetTime()) return; /* The RELEASE timeout will always add to the beginning of the |