diff options
| author | Adam <Adam@anope.org> | 2013-12-01 04:59:59 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2013-12-01 05:00:28 -0500 |
| commit | 5e4d52ad4717fb07dde629902beb70c252c8c8b4 (patch) | |
| tree | 7059b9ce72aec2b43829cfa8424ffc06e66a059f | |
| parent | 6628e714c7dfae824449eb60a8c6cfc501135e6b (diff) | |
Fix 1542937d64860243dcf410738ee73f433a661a94
| -rw-r--r-- | modules/protocol/charybdis.cpp | 1 | ||||
| -rw-r--r-- | modules/protocol/ratbox.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/protocol/charybdis.cpp b/modules/protocol/charybdis.cpp index e007ea275..71c3fa305 100644 --- a/modules/protocol/charybdis.cpp +++ b/modules/protocol/charybdis.cpp @@ -46,6 +46,7 @@ class CharybdisProto : public IRCDProto MaxModes = 4; } + void SendSVSKillInternal(const MessageSource &source, User *targ, const Anope::string &reason) anope_override { ratbox->SendSVSKillInternal(source, targ, reason); } void SendGlobalNotice(BotInfo *bi, const Server *dest, const Anope::string &msg) anope_override { ratbox->SendGlobalNotice(bi, dest, msg); } void SendGlobalPrivmsg(BotInfo *bi, const Server *dest, const Anope::string &msg) anope_override { ratbox->SendGlobalPrivmsg(bi, dest, msg); } void SendGlobopsInternal(const MessageSource &source, const Anope::string &buf) anope_override { ratbox->SendGlobopsInternal(source, buf); } diff --git a/modules/protocol/ratbox.cpp b/modules/protocol/ratbox.cpp index 2b594be47..8dde1aa20 100644 --- a/modules/protocol/ratbox.cpp +++ b/modules/protocol/ratbox.cpp @@ -28,6 +28,7 @@ class RatboxProto : public IRCDProto MaxModes = 4; } + void SendSVSKillInternal(const MessageSource &source, User *targ, const Anope::string &reason) anope_override { hybrid->SendSVSKillInternal(source, targ, reason); } void SendGlobalNotice(BotInfo *bi, const Server *dest, const Anope::string &msg) anope_override { hybrid->SendGlobalNotice(bi, dest, msg); } void SendGlobalPrivmsg(BotInfo *bi, const Server *dest, const Anope::string &msg) anope_override { hybrid->SendGlobalPrivmsg(bi, dest, msg); } void SendSQLine(User *u, const XLine *x) anope_override { hybrid->SendSQLine(u, x); } |
