diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
commit | 06e29194671ebd2b52996e3be3aba34998f205c1 (patch) | |
tree | ee119572f08d232c172a3c0732818f81a6f8b3ac /src/protocol/bahamut.c | |
parent | e03c14cf1da821f98ec607732117636deedee780 (diff) |
Remove cmd_nick in favour of cmd_bot_nick.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1275 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 5a751fd73..d2e4b666a 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -1106,13 +1106,6 @@ void bahamut_cmd_211(const char *buf) send_cmd(NULL, "211 %s", buf); } -void BahamutIRCdProto::cmd_nick(const char *nick, const char *name, const char *modes) -{ - EnforceQlinedNick(nick, NULL); - send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, static_cast<long>(time(NULL)), modes, ServiceUser, ServiceHost, ServerName, name); - cmd_sqline(nick, "Reserved for services"); -} - void BahamutIRCdProto::cmd_kick(const char *source, const char *chan, const char *user, const char *buf) { if (buf) send_cmd(source, "KICK %s %s :%s", chan, user, buf); |