diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2013-02-23 09:54:03 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2013-02-23 09:54:03 +0100 |
commit | 2336b4723c484bd1d4307c24f8f0b16de18e502c (patch) | |
tree | 7b2d0d379a0114e99f2d54dee5f40ff6a5694c90 | |
parent | da61734860ce61203ed460d10a5c18ed971b47e0 (diff) |
do not send RESV from operserv when its not introduced
-rw-r--r-- | modules/protocol/hybrid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index a1e9a89e7..d01180b44 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -44,7 +44,7 @@ class HybridProto : public IRCDProto void SendSQLine(User *, const XLine *x) anope_override { - UplinkSocket::Message(OperServ) << "RESV * " << x->mask << " :" << x->GetReason(); + UplinkSocket::Message(Me) << "RESV * " << x->mask << " :" << x->GetReason(); } void SendSGLineDel(const XLine *x) anope_override |