From 4e699146489c516aed9a86c54b3b7fb96f83ff78 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 4 Jan 2004 13:50:43 +0000 Subject: [PATCH] Made to relay actions and away messages. --- plugins/Relay.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/Relay.py b/plugins/Relay.py index e0c914b86..44e859c2f 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -526,7 +526,9 @@ class Relay(callbacks.Privmsg, configurable.Mixin): channel = msg.args[0] if channel not in self.channels: return - if ircutils.isCtcp(msg) and not 'AWAY' in msg.args[1]: + if ircutils.isCtcp(msg) and \ + not 'AWAY' in msg.args[1] and \ + not 'ACTION' in msg.args[1]: return abbreviation = self.abbreviations[irc] s = self._formatPrivmsg(msg.nick, abbreviation, msg)