mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Added some debug statements and fixed outFilter.
This commit is contained in:
parent
63279606d9
commit
7890e9dbdb
@ -309,6 +309,10 @@ class Relay(callbacks.Privmsg):
|
|||||||
else:
|
else:
|
||||||
s = '%s/%s has quit.' % (msg.nick, network)
|
s = '%s/%s has quit.' % (msg.nick, network)
|
||||||
for channel in self.channels:
|
for channel in self.channels:
|
||||||
|
debug.printf(channel)
|
||||||
|
debug.printf(self.ircstates[irc])
|
||||||
|
debug.printf(self.ircstates[irc][0])
|
||||||
|
debug.printf(self.ircstates[irc][0].channels[channel].users)
|
||||||
if msg.nick in self.ircstates[irc][0].channels[channel].users:
|
if msg.nick in self.ircstates[irc][0].channels[channel].users:
|
||||||
for otherIrc in self.ircs.itervalues():
|
for otherIrc in self.ircs.itervalues():
|
||||||
if otherIrc != irc:
|
if otherIrc != irc:
|
||||||
@ -327,6 +331,7 @@ class Relay(callbacks.Privmsg):
|
|||||||
rAction.match(msg.args[1]) or \
|
rAction.match(msg.args[1]) or \
|
||||||
msg.args[1].find('has left on ') != -1 or \
|
msg.args[1].find('has left on ') != -1 or \
|
||||||
msg.args[1].find('has joined on ') != -1 or \
|
msg.args[1].find('has joined on ') != -1 or \
|
||||||
|
msg.args[1].find('has quit') != -1 or \
|
||||||
msg.args[1].startswith('mode change') or \
|
msg.args[1].startswith('mode change') or \
|
||||||
msg.args[1].startswith('nick change')):
|
msg.args[1].startswith('nick change')):
|
||||||
channel = msg.args[0]
|
channel = msg.args[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user