mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-30 06:49:24 +01:00
Fixed stupid bug in outFilter (forgot to return msg)
This commit is contained in:
parent
32262af492
commit
fae918a1ba
@ -170,7 +170,8 @@ class Relay(privmsgs.CapabilityCheckingPrivmsg):
|
|||||||
for otherIrc in self.ircs.itervalues():
|
for otherIrc in self.ircs.itervalues():
|
||||||
if otherIrc != irc:
|
if otherIrc != irc:
|
||||||
if channel in otherIrc.state.channels:
|
if channel in otherIrc.state.channels:
|
||||||
msg = ircmsgs.privmsg(channel, s)
|
otherIrc.queueMsg(ircmsgs.privmsg(channel, s))
|
||||||
|
return msg
|
||||||
|
|
||||||
Class = Relay
|
Class = Relay
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user