diff options
author | Adam <adam@sigterm.info> | 2015-02-06 17:21:33 -0500 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2015-02-06 17:21:33 -0500 |
commit | f44280a9c9f751d667b07b8de4e857cfbccd55d9 (patch) | |
tree | e9aea82a4c4fd3f0fa2d042873d0983fc4524dce | |
parent | d147db90230f2459e5a776d1e1ccfaf7ce3483fc (diff) | |
parent | f484a68dee0c8e20256d755b0f2b24d62fceb4ed (diff) |
Merge pull request #101 from miwob/master+hybrid-protocol-no-globops-override
- Removed SendGlobopsInternal() override as it's basically a duplicate o...
-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 dc6d7a6c1..438229780 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; |