diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-12 22:31:15 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-12 22:31:15 +0000 |
commit | 6f5528a63b44e610a3d25d7fe583399163d7d2da (patch) | |
tree | 0db7c1642d40bd68a85338f4cdbb87a03f5e7747 /data/rbot/plugins/chanserv.rb | |
parent | 8efdfd2651a720e0dc1681e716d0a23b0429e4fd (diff) |
namespaces: move rbot-specific classes and modules from Irc::* to Irc::Bot::*
Diffstat (limited to 'data/rbot/plugins/chanserv.rb')
-rw-r--r-- | data/rbot/plugins/chanserv.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/chanserv.rb b/data/rbot/plugins/chanserv.rb index c3e99207..7dcd1f3f 100644 --- a/data/rbot/plugins/chanserv.rb +++ b/data/rbot/plugins/chanserv.rb @@ -15,7 +15,7 @@ class ChanServPlugin < Plugin - BotConfig.register BotConfigStringValue.new('chanserv.name', + Config.register Config::StringValue.new('chanserv.name', :default => "chanserv", :requires_restart => false, :desc => "Name of the chan server (all lowercase)") |