diff options
author | Adam <Adam@anope.org> | 2012-10-02 22:59:20 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-02 22:59:20 -0400 |
commit | 47bc551485f46f6195850be1c2a5edb1d8998e30 (patch) | |
tree | 819429547978a437a591e499c00202f6f9566ee9 /modules/protocol/ratbox.cpp | |
parent | 87478187af9f6f670ebf679ce7cc6cc29b21f7af (diff) |
Revert "Fix topiclock on inspircd"
This reverts commit 87478187af9f6f670ebf679ce7cc6cc29b21f7af.
Diffstat (limited to 'modules/protocol/ratbox.cpp')
-rw-r--r-- | modules/protocol/ratbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |