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

fixed missing SID before FJOIN in the inspircd12 protocol module

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2897 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
DukePyrolator
2010-04-17 14:22:16 +00:00
parent 99559d1acd
commit bf84e48549
+1 -1
View File
@@ -217,7 +217,7 @@ class InspIRCdProto : public IRCDProto
/* JOIN */
void SendJoin(BotInfo *user, const char *channel, time_t chantime)
{
send_cmd(NULL, "FJOIN %s %ld + :,%s", channel, static_cast<long>(chantime), user->uid.c_str());
send_cmd(TS6SID, "FJOIN %s %ld + :,%s", channel, static_cast<long>(chantime), user->uid.c_str());
}
/* UNSQLINE */