From 54a2cbdd98e6a39eb365f5c8030711c94c6faf38 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 3 May 2014 16:11:18 +0300 Subject: [PATCH] Protector: disable by default. We are mostly seeing questions on why does Protector do weird things which it does. They can be solved, by disabling Protector by default. Another issue is that when Protector is loaded, it affects every channel where the bot is on. The users most probably want to protect specific channels in case all ops etc. aren't registered to the bot in all channels where the bot is. --- plugins/Protector/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Protector/config.py b/plugins/Protector/config.py index dce6e5c66..4edcc0184 100644 --- a/plugins/Protector/config.py +++ b/plugins/Protector/config.py @@ -44,7 +44,7 @@ def configure(advanced): Protector = conf.registerPlugin('Protector') conf.registerChannelValue(Protector, 'enable', - registry.Boolean(True, _("""Determines whether this plugin is enabled in a + registry.Boolean(False, _("""Determines whether this plugin is enabled in a given channel."""))) class ImmuneNicks(conf.ValidNicks):