1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 04:03:12 +02:00

# BUILD : 1.7.14 (1087) # BUGS : 545 550 541 # NOTES : Various fixes.

git-svn-id: svn://svn.anope.org/anope/trunk@1087 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@811 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-07-14 17:38:00 +00:00
parent 18c0fe03fc
commit cc34de2be6
8 changed files with 47 additions and 17 deletions
+4 -4
View File
@@ -670,8 +670,8 @@ void do_part(const char *source, int ac, char **av)
return;
}
channame = sstrdup(c->chan->name);
send_event(EVENT_PART_CHANNEL, 3, EVENT_START, user->nick,
channame);
send_event(EVENT_PART_CHANNEL, (ac >= 2 ? 4 : 3), EVENT_START, user->nick,
channame, (ac >= 2 ? av[1] : ""));
chan_deluser(user, c->chan);
if (c->next)
@@ -682,8 +682,8 @@ void do_part(const char *source, int ac, char **av)
user->chans = c->next;
free(c);
send_event(EVENT_PART_CHANNEL, 3, EVENT_STOP, user->nick,
channame);
send_event(EVENT_PART_CHANNEL, (ac >= 2 ? 4 : 3), EVENT_STOP, user->nick,
channame, (ac >= 2 ? av[1] : ""));
free(channame);
}
}