diff options
Diffstat (limited to 'src/users.c')
-rw-r--r-- | src/users.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/users.c b/src/users.c index 784876728..af95c067c 100644 --- a/src/users.c +++ b/src/users.c @@ -821,6 +821,7 @@ void do_quit(const char *source, int ac, char **av) alog("debug: %s quits", source); } if ((na = user->na) && (!(na->status & NS_VERBOTEN)) + && (!(na->nc->flags & NI_SUSPENDED)) && (na->status & (NS_IDENTIFIED | NS_RECOGNIZED))) { na->last_seen = time(NULL); if (na->last_quit) @@ -856,6 +857,7 @@ void do_kill(char *nick, char *msg) alog("debug: %s killed", nick); } if ((na = user->na) && (!(na->status & NS_VERBOTEN)) + && (!(na->nc->flags & NI_SUSPENDED)) && (na->status & (NS_IDENTIFIED | NS_RECOGNIZED))) { na->last_seen = time(NULL); if (na->last_quit) |