diff --git a/src/irclib.py b/src/irclib.py index 70b9c0567..7f5708eb1 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -122,7 +122,7 @@ class IrcMsgQueue(object): debug.msg('Not adding msg %s to queue' % msg, 'normal') else: self.msgs.add(msg) - if msg.command in ('MODE', 'KICK', 'PONG'): + if msg.command in ('MODE', 'KICK', 'PONG', 'NICK'): self.highpriority.enqueue(msg) elif msg.command in ('PRIVMSG', 'PING', 'WHO', 'NOTICE'): self.lowpriority.enqueue(msg)