diff options
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); |