From cc8f96eeaca9dd0209e1ba1bc1aeb3dcfd4bc135 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 31 May 2014 18:36:15 +0300 Subject: [PATCH] Relay: set NoticeNonPrivmsgs to True. Please see https://github.com/TkTech/notifico/issues/79 * > There is a difference between a NOTICE to a channel and a NOTICE to a user, every client should be able to correctly display notices to a channel. ~~ @Dav1dde * > They should, but they don't. ~~ @Mkaysi * > That's besides the point. There are a lot of clients that do handle it properly, and if they don't then that's not notifico's fault, that's their own fault. ~~ @sckasturi --- plugins/Relay/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Relay/config.py b/plugins/Relay/config.py index 5646c956d..05d68baa0 100644 --- a/plugins/Relay/config.py +++ b/plugins/Relay/config.py @@ -83,7 +83,7 @@ conf.registerChannelValue(Relay, 'ignores', Ignores([], _("""Determines what hostmasks will not be relayed on a channel."""))) conf.registerChannelValue(Relay, 'noticeNonPrivmsgs', - registry.Boolean(False, _("""Determines whether the bot will used NOTICEs + registry.Boolean(True, _("""Determines whether the bot will used NOTICEs rather than PRIVMSGs for non-PRIVMSG relay messages (i.e., joins, parts, nicks, quits, modes, etc.)""")))