diff options
Diffstat (limited to 'src/protocol/inspircd11.c')
-rw-r--r-- | src/protocol/inspircd11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 8b267d1ba..7cbc2c446 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -722,13 +722,13 @@ void InspIRCdProto::SendClientIntroduction(const char *nick, const char *user, c send_cmd(nick, "OPERTYPE Service"); } -void InspIRCdProto::cmd_kick(const char *source, const char *chan, const char *user, const char *buf) +void InspIRCdProto::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 :%s", chan, user, user); } -void InspIRCdProto::cmd_notice_ops(const char *source, const char *dest, const char *buf) +void InspIRCdProto::SendNoticeChanops(const char *source, const char *dest, const char *buf) { if (!buf) return; send_cmd(ServerName, "NOTICE @%s :%s", dest, buf); |