From 356adb2bcb39ca3ee1aedfd5ef8e149d3b24fdea Mon Sep 17 00:00:00 2001 From: GLolol Date: Wed, 5 Nov 2014 17:05:05 -0800 Subject: [PATCH] Misc: default listUnloadedPlugins & listPrivatePlugins to False --- plugins/Misc/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Misc/config.py b/plugins/Misc/config.py index a726b02e5..810c21db5 100644 --- a/plugins/Misc/config.py +++ b/plugins/Misc/config.py @@ -45,12 +45,12 @@ conf.registerChannelValue(Misc, 'mores', registry.PositiveInteger(1, _("""Determines how many messages the bot will issue when using the 'more' command."""))) conf.registerGlobalValue(Misc, 'listPrivatePlugins', - registry.Boolean(True, _("""Determines whether the bot will list private + registry.Boolean(False, _("""Determines whether the bot will list private plugins with the list command if given the --private switch. If this is disabled, non-owner users should be unable to see what private plugins are loaded."""))) conf.registerGlobalValue(Misc, 'listUnloadedPlugins', - registry.Boolean(True, _("""Determines whether the bot will list unloaded + registry.Boolean(False, _("""Determines whether the bot will list unloaded plugins with the list command if given the --unloaded switch. If this is disabled, non-owner users should be unable to see what unloaded plugins are available.""")))