diff options
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/url.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/url.rb b/data/rbot/plugins/url.rb index 5d423978..b04beb87 100644 --- a/data/rbot/plugins/url.rb +++ b/data/rbot/plugins/url.rb @@ -272,7 +272,7 @@ UNESCAPE_TABLE = { class UrlPlugin < Plugin BotConfig.register BotConfigIntegerValue.new('url.max_urls', -8 :default => 100, :validate => Proc.new{|v| v > 0}, + :default => 100, :validate => Proc.new{|v| v > 0}, :desc => "Maximum number of urls to store. New urls replace oldest ones.") BotConfig.register BotConfigBooleanValue.new('url.display_link_info', :default => false, |