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

Fix FJOIN sending.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1527 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-11-03 22:53:17 +00:00
parent d3d0bf2d61
commit d977211ac0
+1 -1
View File
@@ -585,7 +585,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(NULL, "FJOIN %s %ld + :,%s", channel, static_cast<long>(chantime), user->uid.c_str());
}
/* UNSQLINE */