1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 13:16:38 +02:00

Fix topiclock on inspircd

This commit is contained in:
Adam
2012-10-02 22:16:35 -04:00
parent 7042223f2e
commit 87478187af
9 changed files with 22 additions and 17 deletions
+2 -2
View File
@@ -119,9 +119,9 @@ void IRCDProto::SendNumericInternal(int numeric, const Anope::string &dest, cons
UplinkSocket::Message(Me) << n << " " << dest << " " << buf;
}
void IRCDProto::SendTopic(BotInfo *bi, Channel *c)
void IRCDProto::SendTopic(BotInfo *bi, Channel *c, const Anope::string &topic, const Anope::string &, time_t &)
{
UplinkSocket::Message(bi) << "TOPIC " << c->name << " :" << c->topic;
UplinkSocket::Message(bi) << "TOPIC " << c->name << " :" << topic;
}
void IRCDProto::SendSVSKill(const BotInfo *source, User *user, const char *fmt, ...)