From 317f765daa013e99e37590e1479dbad94019af21 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Wed, 22 Oct 2014 13:29:03 +0300 Subject: [PATCH] supybot-wizard: load NickAuth by default NickAuth functionality is often wanted by users of the bots (is the word end-users?) and is mentioned in the documentation as method of identifying to the bot. I think this should be loaded by default and as this isn't important plugin, users who don't want or need it can unload it. One reason of wanting to unload this plugin could be serviceless networks even if they aren't that common nowadaays. --- scripts/supybot-wizard | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index e8c0887f5..0b8ad81d7 100644 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -693,6 +693,7 @@ def main(): conf.registerPlugin('Channel', True) conf.registerPlugin('Config', True) conf.registerPlugin('Misc', True) + conf.registerPlugin('NickAuth', True) conf.registerPlugin('User', True) conf.registerPlugin('Utilities', True)