Fixed stupid bug in outFilter (forgot to return msg)

This commit is contained in:
Jeremy Fincher 2003-03-27 08:26:36 +00:00
parent 32262af492
commit fae918a1ba
1 changed files with 2 additions and 1 deletions

View File

@ -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