summaryrefslogtreecommitdiff
path: root/src/protocol/unreal32.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:12 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:12 +0000
commitbb898d2454dcbeb55518f4d6433387f9b499fd2e (patch)
tree7b637c22f054f133103f84bdaffd50cc340b650a /src/protocol/unreal32.c
parentf3e386b625ac025e76e3bbd339684f007788070c (diff)
Added cmd_svspart() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1265 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r--src/protocol/unreal32.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c
index ce730bcb3..1f7818295 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -1464,9 +1464,9 @@ void UnrealIRCdProto::cmd_svsjoin(const char *source, const char *nick, const ch
parv[1] - nick to make part
parv[2] - channel(s) to part
*/
-void unreal_cmd_svspart(const char *source, const char *nick, const char *chan)
+void UnrealIRCdProto::cmd_svspart(const char *source, const char *nick, const char *chan)
{
- send_cmd(source, "%s %s :%s", send_token("SVSPART", "BT"), nick, chan);
+ send_cmd(source, "%s %s :%s", send_token("SVSPART", "BT"), nick, chan);
}
int anope_event_globops(const char *source, int ac, const char **av)
@@ -1900,7 +1900,6 @@ void moduleAddAnopeCmds()
pmodule_cmd_242(unreal_cmd_242);
pmodule_cmd_243(unreal_cmd_243);
pmodule_cmd_211(unreal_cmd_211);
- pmodule_cmd_svspart(unreal_cmd_svspart);
pmodule_cmd_swhois(unreal_cmd_swhois);
pmodule_cmd_eob(unreal_cmd_eob);
pmodule_flood_mode_check(unreal_flood_mode_check);