From 282152770688597c6cda4f1906b10a4f7631a64f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 30 Sep 2003 21:19:42 +0000 Subject: [PATCH] Made NICK a high priority message. --- src/irclib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)