diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-01-04 07:33:34 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-01-04 07:33:34 +0100 |
commit | 7198fa73d18ecd43b38a12cb16cefbbda2d5641e (patch) | |
tree | 4c08dbc5f42e1bc52bf9b5b7e09cdd6b9c9ea226 /modules/protocol/unreal32.cpp | |
parent | 03ba592c4874f41844d871e69e5ebcd65ed1c0c8 (diff) |
removed SendSVSPart(), we dont use it
Diffstat (limited to 'modules/protocol/unreal32.cpp')
-rw-r--r-- | modules/protocol/unreal32.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/protocol/unreal32.cpp b/modules/protocol/unreal32.cpp index 4ec41d210..c53c3bf00 100644 --- a/modules/protocol/unreal32.cpp +++ b/modules/protocol/unreal32.cpp @@ -300,16 +300,6 @@ class UnrealIRCdProto : public IRCDProto send_cmd(source, "BX %s :%s", nick.c_str(), chan.c_str()); } - /* svspart - parv[0] - sender - parv[1] - nick to make part - parv[2] - channel(s) to part - */ - void SendSVSPart(const Anope::string &source, const Anope::string &nick, const Anope::string &chan) - { - send_cmd(source, "BT %s :%s", nick.c_str(), chan.c_str()); - } - void SendSWhois(const Anope::string &source, const Anope::string &who, const Anope::string &mask) { send_cmd(source, "BA %s :%s", who.c_str(), mask.c_str()); |