From 17815fbeda3a97f169983e67e3f60308e8bf6706 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 25 Mar 2003 23:44:22 +0000 Subject: [PATCH] Don't complain about not adding messages to the message queue when world.startup is in effect. --- src/irclib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irclib.py b/src/irclib.py index 8aa1cabde..81f4e35c6 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -94,7 +94,7 @@ class IrcMsgQueue(object): self.queue = [] def enqueueMsg(self, msg): - if msg in self.msgs: + if msg in self.msgs and not world.startup: debug.debugMsg('Not adding msg %s to queue' % msg, 'normal') else: self.msgs.add(msg)