diff options
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index a035d2f22..220b33622 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -212,11 +212,6 @@ void IRCDProto::SendPong(const Anope::string &servname, const Anope::string &who send_cmd(ircd->ts6 ? Config->Numeric : Config->ServerName, "PONG %s %s", servname.c_str(), who.c_str()); } -void IRCDProto::SendJoin(BotInfo *bi, const ChannelContainer *cc) -{ - SendJoin(bi, cc->chan->name, cc->chan->creation_time); -} - void IRCDProto::SendInvite(const BotInfo *bi, const Anope::string &chan, const Anope::string &nick) { send_cmd(ircd->ts6 ? bi->GetUID() : bi->nick, "INVITE %s %s", nick.c_str(), chan.c_str()); |