1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 05:03:11 +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
@@ -57,9 +57,9 @@ class UnrealIRCdProto : public IRCDProto
UplinkSocket::Message() << "BD - G " << x->GetUser() << " " << x->GetHost() << " " << Config->OperServ;
}
void SendTopic(BotInfo *bi, Channel *c, const Anope::string &topic, const Anope::string &setter, time_t &ts) anope_override
void SendTopic(BotInfo *whosets, Channel *c) anope_override
{
UplinkSocket::Message(bi) << "TOPIC " << c->name << " " << setter << " " << ts << " :" << topic;
UplinkSocket::Message(whosets) << ") " << c->name << " " << c->topic_setter << " " << c->topic_time + 1 << " :" << c->topic;
}
void SendGlobalNotice(const BotInfo *bi, const Server *dest, const Anope::string &msg) anope_override