Fixed stupid bug.

This commit is contained in:
Jeremy Fincher 2003-04-09 18:05:39 +00:00
parent f6c46bc004
commit 67412da988
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ class Relay(callbacks.Privmsg):
else:
s = '%s/%s has quit.' % (msg.nick, network)
for channel in self.channels:
if msg.nick in self.ircstates.channels[channel].users:
if msg.nick in self.ircstates[irc].channels[channel].users:
for otherIrc in self.ircs.itervalues():
if otherIrc != irc:
otherIrc.queueMsg(ircmsgs.privmsg(channel, s))