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/unreal32.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/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 56b5f3e90..8a0422b08 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -589,14 +589,6 @@ void unreal_cmd_376(const char *source) send_cmd(ServerName, "376 %s :End of /MOTD command.", source); } -void UnrealIRCdProto::cmd_nick(const char *nick, const char *name, const char *modes) -{ - EnforceQlinedNick(nick, NULL); - send_cmd(NULL, "%s %s 1 %ld %s %s %s 0 %s %s%s :%s", send_token("NICK", "&"), nick, static_cast<long>(time(NULL)), ServiceUser, ServiceHost, ServerName, modes, - ServiceHost, myIrcd->nickip ? " *" : " ", name); - cmd_sqline(nick, "Reserved for services"); -} - void UnrealIRCdProto::cmd_guest_nick(const char *nick, const char *user, const char *host, const char *real, const char *modes) { send_cmd(NULL, "%s %s 1 %ld %s %s %s 0 %s %s%s :%s", send_token("NICK", "&"), nick, static_cast<long>(time(NULL)), user, host, ServerName, modes, host, |