From bd0d4382340187abdc3f7d84d7fe731afde1c1e7 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 28 Aug 2004 20:13:59 +0000 Subject: [PATCH] *Actually* not queue things on zombies now. --- plugins/Relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Relay.py b/plugins/Relay.py index 052f37803..ad3b91a38 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -433,7 +433,7 @@ class Relay(callbacks.Privmsg): def _sendToOthers(self, irc, msg): assert msg.command == 'PRIVMSG' or msg.command == 'TOPIC' for otherIrc in world.ircs: - if otherIrc != irc and not irc.zombie: + if otherIrc != irc and not otherIrc.zombie: if msg.args[0] in otherIrc.state.channels: self._addRelayedMsg(msg) otherIrc.queueMsg(msg)