diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:31:33 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:31:33 +0000 |
commit | 4e395e19629abe6b93c4b14a0608d071dbf4b5b4 (patch) | |
tree | eb5005053da22904b34a5679ef4001ae3c713445 /src/protocol/bahamut.c | |
parent | 341b226c63e5cf193246ec983e0736dd5af78be7 (diff) |
KICK, notice ops.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1303 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 5b80a8522..adf4957f1 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -957,13 +957,13 @@ int anope_event_motd(const char *source, int ac, const char **av) return MOD_CONT; } -void BahamutIRCdProto::cmd_notice_ops(const char *source, const char *dest, const char *buf) +void BahamutIRCdProto::SendNoticeChanops(const char *source, const char *dest, const char *buf) { if (!buf) return; send_cmd(NULL, "NOTICE @%s :%s", dest, buf); } -void BahamutIRCdProto::cmd_kick(const char *source, const char *chan, const char *user, const char *buf) +void BahamutIRCdProto::SendKick(const char *source, const char *chan, const char *user, const char *buf) { if (buf) send_cmd(source, "KICK %s %s :%s", chan, user, buf); else send_cmd(source, "KICK %s %s", chan, user); |