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)