From 325ad70187d6400489d2cfdb734f92200fdacbf4 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 30 Sep 2004 05:39:23 +0000 Subject: [PATCH] Changed default of private. --- plugins/Later.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Later.py b/plugins/Later.py index 82a1ddaff..beb63d279 100644 --- a/plugins/Later.py +++ b/plugins/Later.py @@ -65,7 +65,7 @@ conf.registerGlobalValue(conf.supybot.plugins.Later, 'maximum', registry.NonNegativeInteger(0, """Determines the maximum number of messages to be queued for a user. If this value is 0, there is no maximum.""")) conf.registerGlobalValue(conf.supybot.plugins.Later, 'private', - registry.Boolean(False, """Determines whether users will be notified in the + registry.Boolean(True, """Determines whether users will be notified in the first place in which they're seen, or in private.""")) class Later(callbacks.Privmsg):