diff options
Diffstat (limited to 'src')
-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 1dbba0671..a20a0b8b1 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -57,7 +57,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 || nick_identified(u) || u->my_signon > this->GetSetTime()) return; /* The RELEASE timeout will always add to the beginning of the |