diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-12 22:34:00 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-12 22:34:00 +0000 |
commit | b0535c77602f81cf85858585c9b9863ee9eeadc4 (patch) | |
tree | 74ce6bbf7d6b424f9025e9540653dd867101bdfb | |
parent | c9120ca03163e268c8634e83f69bbb4af61f2a29 (diff) |
inspircd11: Pass chants in JOIN message to not blow away timestamps.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2027 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/inspircd11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 5ae4257aa..286daf392 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -570,7 +570,7 @@ class InspIRCdProto : public IRCDProto /* JOIN */ void SendJoin(BotInfo *user, const char *channel, time_t chantime) { - send_cmd(user->nick, "JOIN %s", channel); + send_cmd(user->nick, "JOIN %s %ld", channel, (unsigned int)chantime); } /* UNSQLINE */ |