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

Revert "Fix topiclock on inspircd"

This reverts commit 87478187af.
This commit is contained in:
Adam
2012-10-02 22:59:20 -04:00
parent 87478187af
commit 47bc551485
9 changed files with 17 additions and 22 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, const Anope::string &topic, const Anope::string &, time_t &)
void IRCDProto::SendTopic(BotInfo *bi, Channel *c)
{
UplinkSocket::Message(bi) << "TOPIC " << c->name << " :" << topic;
UplinkSocket::Message(bi) << "TOPIC " << c->name << " :" << c->topic;
}
void IRCDProto::SendSVSKill(const BotInfo *source, User *user, const char *fmt, ...)