diff options
Diffstat (limited to 'lib/rbot/auth.rb')
-rw-r--r-- | lib/rbot/auth.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rbot/auth.rb b/lib/rbot/auth.rb index 41890f7e..ae7199e1 100644 --- a/lib/rbot/auth.rb +++ b/lib/rbot/auth.rb @@ -19,7 +19,8 @@ module Irc # User-level authentication to allow/disallow access to bot commands based # on hostmask and userlevel. class IrcAuth - BotConfig.register('auth.password', :type => BotConfig::Password, :default => "Your password for maxing your auth with the bot (used to associate new hostmasks with your owner-status etc)") + BotConfig.register BotConfigStringValue.new('auth.password', + :default => "Your password for maxing your auth with the bot (used to associate new hostmasks with your owner-status etc)") # create a new IrcAuth instance. # bot:: associated bot class |