From e854a0de58645af2da8e03018535643e6edf1b73 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 3 May 2014 16:02:04 +0300 Subject: [PATCH] AutoMode: use more sane defaults. Don't automode owner. Fall though yes. Auto-op no. Auto-hop no. Auto-voice no. --- plugins/AutoMode/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/AutoMode/config.py b/plugins/AutoMode/config.py index 469477e3d..2c80f0a47 100644 --- a/plugins/AutoMode/config.py +++ b/plugins/AutoMode/config.py @@ -46,26 +46,26 @@ conf.registerChannelValue(AutoMode, 'enable', registry.Boolean(True, _("""Determines whether this plugin is enabled. """))) conf.registerGlobalValue(AutoMode, 'owner', - registry.Boolean(True, _("""Determines whether this plugin will automode + registry.Boolean(False, _("""Determines whether this plugin will automode owners even if they don't have op/halfop/voice/whatever capability."""))) conf.registerChannelValue(AutoMode, 'alternativeCapabilities', registry.Boolean(False, _("""Determines whether the bot will check for 'alternative capabilities' (ie. autoop, autohalfop, autovoice) in addition to/instead of classic ones."""))) conf.registerChannelValue(AutoMode, 'fallthrough', - registry.Boolean(False, _("""Determines whether the bot will "fall + registry.Boolean(True, _("""Determines whether the bot will "fall through" to halfop/voicing when auto-opping is turned off but auto-halfopping/voicing are turned on."""))) conf.registerChannelValue(AutoMode, 'op', - registry.Boolean(True, _("""Determines whether the bot will automatically + registry.Boolean(False, _("""Determines whether the bot will automatically op people with the ,op capability when they join the channel. """))) conf.registerChannelValue(AutoMode, 'halfop', - registry.Boolean(True, _("""Determines whether the bot will automatically + registry.Boolean(False, _("""Determines whether the bot will automatically halfop people with the ,halfop capability when they join the channel."""))) conf.registerChannelValue(AutoMode, 'voice', - registry.Boolean(True, _("""Determines whether the bot will automatically + registry.Boolean(False, _("""Determines whether the bot will automatically voice people with the ,voice capability when they join the channel."""))) conf.registerChannelValue(AutoMode, 'ban',