From d5e959f179c3d04261418717dbf71ee14a20c419 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Sun, 21 Feb 2010 01:07:32 +0100 Subject: [PATCH] Do not check for spambot if the user is not allowed to join the channel. --- modules/core/m_join.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/core/m_join.c b/modules/core/m_join.c index f8598d7..188ea38 100644 --- a/modules/core/m_join.c +++ b/modules/core/m_join.c @@ -294,9 +294,6 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p } } - if(!IsOper(source_p) && !IsExemptSpambot(source_p)) - check_spambot_warning(source_p, name); - /* can_join checks for +i key, bans etc */ if((i = can_join(source_p, chptr, key))) { @@ -318,6 +315,9 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p sendto_one_numeric(source_p, ERR_LINKCHANNEL, form_str(ERR_LINKCHANNEL), name, chptr->chname); } + if(!IsOper(source_p) && !IsExemptSpambot(source_p)) + check_spambot_warning(source_p, name); + /* add the user to the channel */ add_user_to_channel(chptr, source_p, flags); if (chptr->mode.join_num &&