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