From 47bc551485f46f6195850be1c2a5edb1d8998e30 Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 2 Oct 2012 22:59:20 -0400 Subject: Revert "Fix topiclock on inspircd" This reverts commit 87478187af9f6f670ebf679ce7cc6cc29b21f7af. --- modules/protocol/ratbox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/protocol/ratbox.cpp') diff --git a/modules/protocol/ratbox.cpp b/modules/protocol/ratbox.cpp index fc6cd788e..a6fc85675 100644 --- a/modules/protocol/ratbox.cpp +++ b/modules/protocol/ratbox.cpp @@ -197,7 +197,7 @@ class RatboxProto : public IRCDProto return true; } - void SendTopic(BotInfo *bi, Channel *c, const Anope::string &topic, const Anope::string &setter, time_t &ts) anope_override + void SendTopic(BotInfo *bi, Channel *c) anope_override { bool needjoin = c->FindUser(bi) == NULL; if (needjoin) @@ -206,7 +206,7 @@ class RatboxProto : public IRCDProto status.SetFlag(CMODE_OP); bi->Join(c, &status); } - IRCDProto::SendTopic(bi, c, topic, setter, ts); + IRCDProto::SendTopic(bi, c); if (needjoin) bi->Part(c); } -- cgit