diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-29 15:37:47 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-29 15:37:47 +0000 |
commit | 05dfd4e1a0f4e17c23ae7bfeed776c943c9394fe (patch) | |
tree | eeae376a49f61e7cc91e5b9ff9a53148e1d8a5cd /lib/rbot/ircbot.rb | |
parent | 5dc41054c67436ce2d2a14729472d6cb08b9cc37 (diff) |
Flatten out Language module and class
Diffstat (limited to 'lib/rbot/ircbot.rb')
-rw-r--r-- | lib/rbot/ircbot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 87d4f3eb..17d7ffe7 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -448,7 +448,7 @@ class Bot @logs = Hash.new @plugins = nil - @lang = Language::Language.new(self, @config['core.language']) + @lang = Language.new(self, @config['core.language']) begin @auth = Auth::authmanager |