diff options
author | miwob <michael@wobst.at> | 2015-02-06 20:28:30 +0100 |
---|---|---|
committer | miwob <michael@wobst.at> | 2015-02-06 20:28:30 +0100 |
commit | f484a68dee0c8e20256d755b0f2b24d62fceb4ed (patch) | |
tree | 2f5fd0a593a74de50983534bdbc457255383b5b5 /modules/protocol/hybrid.cpp | |
parent | 9834518b28e3bb6ec62000c26be4e5927ca92979 (diff) |
- Removed SendGlobopsInternal() override as it's basically a duplicate of SendGlobopsInternal() in protocol.c
Diffstat (limited to 'modules/protocol/hybrid.cpp')
-rw-r--r-- | modules/protocol/hybrid.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index b6ee17d45..f0c359be4 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -66,11 +66,6 @@ class HybridProto : public IRCDProto UplinkSocket::Message(bi) << "PRIVMSG $$" << dest->GetName() << " :" << msg; } - void SendGlobopsInternal(const MessageSource &source, const Anope::string &buf) anope_override - { - UplinkSocket::Message(source) << "GLOBOPS :" << buf; - } - void SendSQLine(User *, const XLine *x) anope_override { UplinkSocket::Message(FindIntroduced()) << "ENCAP * RESV " << (x->expires ? x->expires - Anope::CurTime : 0) << " " << x->mask << " 0 :" << x->reason; |