1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 01:36:38 +02:00

fixed missing SID on FJOIN in inspircd12 protocol module

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2899 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
DukePyrolator
2010-04-17 16:17:20 +00:00
parent 87e96d6f52
commit c66f28ed61
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1005,7 +1005,7 @@ void inspircd_cmd_pong(char *servname, char *who)
void inspircd_cmd_join(char *user, char *channel, time_t chantime)
{
Uid *ud = (user ? find_uid(user) : NULL);
send_cmd(NULL, "FJOIN %s %ud + :,%s", channel, (unsigned int)chantime, ud ? ud->uid : user);
send_cmd(TS6SID, "FJOIN %s %ud + :,%s", channel, (unsigned int)chantime, ud ? ud->uid : user);
}
/* UNSQLINE */