diff --git a/plugins/ChannelLogger.py b/plugins/ChannelLogger.py index 106a9b948..9470915fa 100644 --- a/plugins/ChannelLogger.py +++ b/plugins/ChannelLogger.py @@ -291,7 +291,8 @@ class ChannelLogger(callbacks.Privmsg): def outFilter(self, irc, msg): # Gotta catch my own messages *somehow* :) # Let's try this little trick... - if msg.command != 'PART': + if msg.command in ('PRIVMSG', 'NOTICE'): + # Other messages should be sent back to us. m = ircmsgs.IrcMsg(msg=msg, prefix=irc.prefix) self(irc, m) return msg