Skip to content

Commit

Permalink
Code style cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
martynsmith committed Oct 25, 2012
1 parent 571928d commit 4d219c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/irc.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ function Client(server, nick, opt) {
break; break;
case "NICK": case "NICK":
if ( message.nick == self.nick ) if ( message.nick == self.nick )
// the user just changed their own nick // the user just changed their own nick
self.nick = message.args[0]; self.nick = message.args[0];

if ( self.opt.debug ) if ( self.opt.debug )
util.log("NICK: " + message.nick + " changes nick to " + message.args[0]); util.log("NICK: " + message.nick + " changes nick to " + message.args[0]);


Expand Down

0 comments on commit 4d219c0

Please sign in to comment.