diff options
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ircd.c b/src/ircd.c index c749e838f..2c45aa8f6 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -102,9 +102,9 @@ void anope_SendMode(const char *source, const char *dest, const char *fmt, ...) ircdproto->SendMode(source, dest, buf); } -void anope_cmd_bot_nick(const char *nick, const char *user, const char *host, const char *real, const char *modes) +void anope_SendClientIntroduction(const char *nick, const char *user, const char *host, const char *real, const char *modes) { - ircdproto->cmd_bot_nick(nick, user, host, real, modes); + ircdproto->SendClientIntroduction(nick, user, host, real, modes); } void anope_cmd_kick(const char *source, const char *chan, const char *user, const char *fmt, ...) |