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

Move OnJoinChannel event to trigger after the user has completely joined and document it more about what you should and shouldnt do in it

This commit is contained in:
Adam
2013-06-01 21:51:00 -04:00
parent b56e71ab14
commit 9956da18e3
6 changed files with 25 additions and 24 deletions
+1 -1
View File
@@ -176,7 +176,7 @@ void BotInfo::Join(Channel *c, ChannelStatus *status)
if (c->FindUser(this) != NULL)
return;
c->JoinUser(this);
c->JoinUser(this, status);
if (IRCD)
IRCD->SendJoin(this, c, status);
}