mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 12:42:34 +01:00
Fixed action handling
This commit is contained in:
parent
ca08509247
commit
c268078697
@ -135,7 +135,11 @@ class Relay(callbacks.Privmsg):
|
||||
debug.printf('self.ircs = %s' % self.ircs)
|
||||
debug.printf('irc = %s' % irc)
|
||||
abbreviation = self.abbreviations[irc]
|
||||
s = '<%s@%s> %s' % (msg.nick, abbreviation, msg.args[1])
|
||||
if ircmsgs.isAction(msg):
|
||||
_args1 = '* %s %s' % (msg.nick, ircmsgs.unAction(msg))
|
||||
else:
|
||||
_args1 = msg.args[1]
|
||||
s = '<%s@%s> %s' % (msg.nick, abbreviation, _args1)
|
||||
for otherIrc in self.ircs:
|
||||
debug.printf('otherIrc = %s' % otherIrc)
|
||||
if otherIrc != irc:
|
||||
|
Loading…
Reference in New Issue
Block a user