X-Git-Url: http://git.pk910.de/?p=NeonServV5.git;a=blobdiff_plain;f=src%2Fmodules%2FNeonFun.mod%2Fbot_NeonFun.c;h=6fad25665145f94df573241197898b68c2eacd10;hp=3679234aea712bdeeda7ba8eb8c6aae8fa48fca4;hb=c8e7ce1;hpb=e77f75ad6cda0f1856710d685895284d694ef70d diff --git a/src/modules/NeonFun.mod/bot_NeonFun.c b/src/modules/NeonFun.mod/bot_NeonFun.c index 3679234..6fad256 100644 --- a/src/modules/NeonFun.mod/bot_NeonFun.c +++ b/src/modules/NeonFun.mod/bot_NeonFun.c @@ -128,16 +128,11 @@ static void start_bots(int type) { bind_unbound_required_functions(BOTID); } -static void neonfun_parted(struct ChanUser *chanuser, char *reason) { +static void neonfun_parted(struct ChanUser *chanuser, int quit, char *reason) { uno_event_part(chanuser); fourwins_event_part(chanuser); } -static void neonfun_quitted(struct UserNode *user, char *reason) { - uno_event_quit(user); - fourwins_event_quit(user); -} - static int neonfun_freechan(struct ChanNode *chan) { uno_event_freechan(chan); fourwins_event_freechan(chan); @@ -183,7 +178,6 @@ void init_NeonFun(int type) { //register events bind_bot_ready(neonfun_bot_ready, module_id); bind_part(neonfun_parted, module_id); - bind_quit(neonfun_quitted, module_id); bind_freechan(neonfun_freechan, module_id); bind_invite(neonfun_event_invite, module_id);