Made NICK a high priority message.

This commit is contained in:
Jeremy Fincher 2003-09-30 21:19:42 +00:00
parent 5627f6321e
commit 2821527706
1 changed files with 1 additions and 1 deletions

View File

@ -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)