summaryrefslogtreecommitdiff
path: root/src/protocol/bahamut.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
commit82722cf5d7d56a51830f797b5396908387107b64 (patch)
treeb05b3223893de9bfa10e2bf38b17907652a05aaa /src/protocol/bahamut.c
parent44f01ce8d5e604f5539f55d393ec9df17d14ffd7 (diff)
Added cmd_quit() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1236 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r--src/protocol/bahamut.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c
index 35d1fb61d..1241e92a0 100644
--- a/src/protocol/bahamut.c
+++ b/src/protocol/bahamut.c
@@ -1206,16 +1206,6 @@ void bahamut_cmd_invite(const char *source, const char *chan, const char *nick)
send_cmd(source, "INVITE %s %s", nick, chan);
}
-/* QUIT */
-void bahamut_cmd_quit(const char *source, const char *buf)
-{
- if (buf) {
- send_cmd(source, "QUIT :%s", buf);
- } else {
- send_cmd(source, "QUIT");
- }
-}
-
int anope_event_away(const char *source, int ac, const char **av)
{
if (!source) {
@@ -1489,7 +1479,6 @@ void moduleAddAnopeCmds()
pmodule_cmd_375(bahamut_cmd_375);
pmodule_cmd_376(bahamut_cmd_376);
pmodule_cmd_351(bahamut_cmd_351);
- pmodule_cmd_quit(bahamut_cmd_quit);
pmodule_cmd_pong(bahamut_cmd_pong);
pmodule_cmd_join(bahamut_cmd_join);
pmodule_cmd_unsqline(bahamut_cmd_unsqline);