diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-01-04 07:14:50 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-01-04 07:14:50 +0100 |
commit | 03ba592c4874f41844d871e69e5ebcd65ed1c0c8 (patch) | |
tree | 28706c6d0512162873a7be8a2a8092a0b4a6a0fb /modules/protocol/bahamut.cpp | |
parent | 57a06f72e231d8848393c8ba3bb4034a332bac4f (diff) |
removed SendSVSMode(), we dont use it
Diffstat (limited to 'modules/protocol/bahamut.cpp')
-rw-r--r-- | modules/protocol/bahamut.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/protocol/bahamut.cpp b/modules/protocol/bahamut.cpp index 21d351f0c..19227958b 100644 --- a/modules/protocol/bahamut.cpp +++ b/modules/protocol/bahamut.cpp @@ -102,15 +102,6 @@ class BahamutIRCdProto : public IRCDProto send_cmd(Config->ServerName, "SVSHOLD %s 0", nick.c_str()); } - /* SVSMODE channel modes */ - void SendSVSModeChan(const Channel *c, const Anope::string &mode, const Anope::string &nick) - { - if (!nick.empty()) - send_cmd(Config->ServerName, "SVSMODE %s %s %s", c->name.c_str(), mode.c_str(), nick.c_str()); - else - send_cmd(Config->ServerName, "SVSMODE %s %s", c->name.c_str(), mode.c_str()); - } - /* SQLINE */ void SendSQLine(const XLine *x) { @@ -207,18 +198,6 @@ class BahamutIRCdProto : public IRCDProto send_cmd(source ? source->nick : "", "SVSKILL %s :%s", user->nick.c_str(), buf.c_str()); } - /* SVSMODE */ - /* parv[0] - sender - * parv[1] - nick - * parv[2] - TS (or mode, depending on svs version) - * parv[3] - mode (or services id if old svs version) - * parv[4] - optional arguement (services id) - */ - void SendSVSMode(const User *u, int ac, const char **av) - { - this->SendModeInternal(NULL, u, merge_args(ac, av)); - } - void SendBOB() { send_cmd("", "BURST"); |