diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-12-17 23:46:02 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-12-17 23:46:02 +0000 |
commit | 6ed155c0910811316c0c87da802e9d1478a474bc (patch) | |
tree | a97f9d74a978b67be5763c66c33f69fad60307b9 /data/rbot/plugins/nickserv.rb | |
parent | f9ce9ceadb7a1e1b8cd0682f182c6aa982e337de (diff) |
nickserv plugin now defaults to not providing the nick when identifying, as this seems to be more common
Diffstat (limited to 'data/rbot/plugins/nickserv.rb')
-rw-r--r-- | data/rbot/plugins/nickserv.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/nickserv.rb b/data/rbot/plugins/nickserv.rb index 720f3b3a..1e419af4 100644 --- a/data/rbot/plugins/nickserv.rb +++ b/data/rbot/plugins/nickserv.rb @@ -14,7 +14,7 @@ class NickServPlugin < Plugin :on_change => Proc.new { |bot, v| bot.plugins.delegate "set_ident_request", v }, :desc => "String to look for to see if the nick server is asking us to identify") BotConfig.register BotConfigBooleanValue.new('nickserv.wants_nick', - :default => true, :requires_restart => false, + :default => false, :requires_restart => false, :desc => "Set to false if the nick server doesn't expect the nick as a parameter in the identify command") BotConfig.register BotConfigIntegerValue.new('nickserv.wait', :default => 30, :validate => Proc.new { |v| v > 0 }, :requires_restart => false, |