X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fmodules%2FNeonHelp.mod%2Fbot_NeonHelp.c;h=1b7fefa9a3a41edcf96a483232f2fbe26f11eff6;hb=e480c2dd1f27977ec0d5b0f2730d3eeaf5984f92;hp=12c357680e743877c8a4a35ad1812cc3ad85924d;hpb=9f01ca7c6136234eb82c5598394b328e1ba64d71;p=NeonServV5.git diff --git a/src/modules/NeonHelp.mod/bot_NeonHelp.c b/src/modules/NeonHelp.mod/bot_NeonHelp.c index 12c3576..1b7fefa 100644 --- a/src/modules/NeonHelp.mod/bot_NeonHelp.c +++ b/src/modules/NeonHelp.mod/bot_NeonHelp.c @@ -399,7 +399,7 @@ static void neonhelp_event_chanmsg(struct UserNode *user, struct ChanNode *chan, } } -static void destroy_support_request(struct ClientSocket *client, struct NeonHelpNode *helpnode, int do_reply) { +void neonhelp_destroy_support_request(struct ClientSocket *client, struct NeonHelpNode *helpnode, int do_reply) { //write buffer to database char logbuff[MAXLEN * LOGBUFFERLINES]; int len = 0; @@ -447,12 +447,17 @@ static void neonhelp_event_kick(struct UserNode *user, struct ChanUser *target, support = getChanByName(row[0]); public = (row[1] ? getChanByName(row[1]) : NULL); if(target->chan == support || !((support && isUserOnChan(target->user, support)) || (public && isUserOnChan(target->user, public)))) { + if(helpnode->status == 1 && target->chan != support) { + putsock(client, "MODE %s -i", support->name); //clear invite list + if(isModeSet(support->modes, 'i')) + putsock(client, "MODE %s +i", support->name); + } //free the user's support request if(prev_helpnode) prev_helpnode->next = helpnode->next; else client->botclass_helpnode = helpnode->next; - destroy_support_request(client, helpnode, 1); + neonhelp_destroy_support_request(client, helpnode, 1); } } } @@ -484,12 +489,17 @@ static void neonhelp_event_part(struct ChanUser *target, char *reason) { support = getChanByName(row[0]); public = (row[1] ? getChanByName(row[1]) : NULL); if(target->chan == support || !((support && isUserOnChan(target->user, support)) || (public && isUserOnChan(target->user, public)))) { + if(helpnode->status == 1 && target->chan != support) { + putsock(client, "MODE %s -i", support->name); //clear invite list + if(isModeSet(support->modes, 'i')) + putsock(client, "MODE %s +i", support->name); + } //free the user's support request if(prev_helpnode) prev_helpnode->next = helpnode->next; else client->botclass_helpnode = helpnode->next; - destroy_support_request(client, helpnode, 1); + neonhelp_destroy_support_request(client, helpnode, 1); } } } @@ -517,7 +527,7 @@ static void neonhelp_event_quit(struct UserNode *target, char *reason) { prev_helpnode->next = helpnode->next; else client->botclass_helpnode = helpnode->next; - destroy_support_request(client, helpnode, 0); + neonhelp_destroy_support_request(client, helpnode, 0); } } }