From d2bff1b1f174b6d05917ec4e9bae56c0b1729077 Mon Sep 17 00:00:00 2001 From: Cory Chaplin Date: Wed, 30 Oct 2013 00:12:00 +0100 Subject: [PATCH] Removed redundant call to NAMES onJoin --- server/irc/channel.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/server/irc/channel.js b/server/irc/channel.js index fcdeec2..46c9955 100644 --- a/server/irc/channel.js +++ b/server/irc/channel.js @@ -48,11 +48,6 @@ function onJoin(event) { ident: event.ident, hostname: event.hostname }); - - // If we've just joined this channel then request get a nick list - if (event.nick === this.irc_connection.nick) { - this.irc_connection.write('NAMES ' + this.name); - } } -- 2.25.1