Remove dead code: last_join_time is already updated by check_spambot_warning().
This commit is contained in:
parent
cf3564d61f
commit
9148f6aa7c
1 changed files with 0 additions and 13 deletions
|
@ -141,7 +141,6 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
|||
char *p = NULL, *p2 = NULL;
|
||||
char *chanlist;
|
||||
char *mykey;
|
||||
int successful_join_count = 0; /* Number of channels successfully joined */
|
||||
|
||||
jbuf[0] = '\0';
|
||||
|
||||
|
@ -272,14 +271,9 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
|||
{
|
||||
sendto_one(source_p, form_str(ERR_TOOMANYCHANNELS),
|
||||
me.name, source_p->name, name);
|
||||
if(successful_join_count)
|
||||
source_p->localClient->last_join_time = rb_current_time();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if(flags == 0) /* if channel doesn't exist, don't penalize */
|
||||
successful_join_count++;
|
||||
|
||||
if(chptr == NULL) /* If I already have a chptr, no point doing this */
|
||||
{
|
||||
chptr = get_or_create_channel(source_p, name, NULL);
|
||||
|
@ -288,8 +282,6 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
|||
{
|
||||
sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
|
||||
me.name, source_p->name, name);
|
||||
if(successful_join_count > 0)
|
||||
successful_join_count--;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
@ -307,8 +299,6 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
|||
if(i != ERR_CUSTOM)
|
||||
sendto_one(source_p, form_str(i), me.name, source_p->name, name);
|
||||
|
||||
if(successful_join_count > 0)
|
||||
successful_join_count--;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -373,9 +363,6 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
|||
|
||||
channel_member_names(chptr, source_p, 1);
|
||||
|
||||
if(successful_join_count)
|
||||
source_p->localClient->last_join_time = rb_current_time();
|
||||
|
||||
hook_info.client = source_p;
|
||||
hook_info.chptr = chptr;
|
||||
hook_info.key = key;
|
||||
|
|
Loading…
Reference in a new issue