From 67412da988c5a868e1d51a6f9f65c3476a0548ff Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 9 Apr 2003 18:05:39 +0000 Subject: [PATCH] Fixed stupid bug. --- plugins/Relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Relay.py b/plugins/Relay.py index b3fa0bca3..9dc9e8d7c 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -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))