diff options
| author | Adam <Adam@anope.org> | 2013-11-21 11:34:42 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2013-11-21 11:34:42 -0500 |
| commit | 1542937d64860243dcf410738ee73f433a661a94 (patch) | |
| tree | d2c3d5fadbfa4e35e816667bf629a9f6b346d12e /modules/protocol | |
| parent | 3b8f1cd59f523205d96c54c517b4d3e06bc061c4 (diff) | |
Hybrid has no quit on kill, so internally kill users when killed
Diffstat (limited to 'modules/protocol')
| -rw-r--r-- | modules/protocol/hybrid.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index 997513f7e..7e61b9085 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -16,6 +16,12 @@ static Anope::string UplinkSID; class HybridProto : public IRCDProto { + void SendSVSKillInternal(const MessageSource &source, User *user, const Anope::string &buf) anope_override + { + IRCDProto::SendSVSKillInternal(source, user, buf); + user->KillInternal(source, buf); + } + public: HybridProto(Module *creator) : IRCDProto(creator, "Hybrid 8.1.x") { |
