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

Fixed topic lock on inspircd

This commit is contained in:
Adam
2012-01-08 18:14:07 -05:00
parent 830c5ca725
commit f8245574dc
+1 -1
View File
@@ -57,7 +57,7 @@ class InspIRCdTS6Proto : public IRCDProto
void SendTopic(BotInfo *whosets, Channel *c)
{
UplinkSocket::Message(whosets->GetUID()) << "FTOPIC " << c->name << " " << c->topic_time + 1 << " " << c->topic_setter << " :" << c->topic;
UplinkSocket::Message(whosets->GetUID()) << "FTOPIC " << c->name << " " << Anope::CurTime << " " << c->topic_setter << " :" << c->topic;
}
void SendVhostDel(User *u)