From fae918a1ba3f6afea693c357affa79c506a7117b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 27 Mar 2003 08:26:36 +0000 Subject: [PATCH] Fixed stupid bug in outFilter (forgot to return msg) --- plugins/Relay.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Relay.py b/plugins/Relay.py index f9fcba021..b2121404e 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -170,7 +170,8 @@ class Relay(privmsgs.CapabilityCheckingPrivmsg): for otherIrc in self.ircs.itervalues(): if otherIrc != irc: if channel in otherIrc.state.channels: - msg = ircmsgs.privmsg(channel, s) + otherIrc.queueMsg(ircmsgs.privmsg(channel, s)) + return msg Class = Relay