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:13 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:13 +0000
commitae4f3a615fb38bcec088f0ac41d8d4a78181d90e (patch)
treea9a70e752ce7640059348d32e4557dd39c8d3244 /src/protocol/bahamut.c
parent611bafbafe76852e3ea5942a6e2a18bda9289cf2 (diff)
Added cmd_eob() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1267 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r--src/protocol/bahamut.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c
index d2c41f555..16166996d 100644
--- a/src/protocol/bahamut.c
+++ b/src/protocol/bahamut.c
@@ -1230,9 +1230,9 @@ int anope_event_pass(const char *source, int ac, const char **av)
return MOD_CONT;
}
-void bahamut_cmd_eob()
+void BahamutIRCdProto::cmd_eob()
{
- send_cmd(NULL, "BURST 0");
+ send_cmd(NULL, "BURST 0");
}
int anope_event_burst(const char *source, int ac, const char **av)
@@ -1352,7 +1352,6 @@ void moduleAddAnopeCmds()
pmodule_cmd_242(bahamut_cmd_242);
pmodule_cmd_243(bahamut_cmd_243);
pmodule_cmd_211(bahamut_cmd_211);
- pmodule_cmd_eob(bahamut_cmd_eob);
pmodule_flood_mode_check(bahamut_flood_mode_check);
pmodule_cmd_jupe(bahamut_cmd_jupe);
pmodule_valid_nick(bahamut_valid_nick);