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.
This commit is contained in:
Mikaela Suomalainen 2014-05-03 16:11:18 +03:00
parent 4b61da11d5
commit 54a2cbdd98

View File

@ -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):