Don't complain about not adding messages to the message queue when world.startup is in effect.

This commit is contained in:
Jeremy Fincher 2003-03-25 23:44:22 +00:00
parent ff8a967647
commit 17815fbeda

View File

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