diff options
Diffstat (limited to 'module')
-rw-r--r-- | module/admin.rb | 6 | ||||
-rw-r--r-- | module/config.rb | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/module/admin.rb b/module/admin.rb index f26a652..957be7d 100644 --- a/module/admin.rb +++ b/module/admin.rb @@ -12,21 +12,21 @@ module Dinobot @commands << :join << :part << :quit << :load << :unload @commands << :listadmins << :listmodules << :listchannels - @admins = @store.data[:admins] + @admins = @store[:admins] @admins ||= Array.new end def add(user) @admins << user unless @admins.include?(user) - @store.data[:admins] = @admins + @store[:admins] = @admins @store.save end def remove(user) @admins.delete(user) - @store.data[:admins] = @admins + @store[:admins] = @admins @store.save end diff --git a/module/config.rb b/module/config.rb index cf71bd4..0082260 100644 --- a/module/config.rb +++ b/module/config.rb @@ -17,9 +17,9 @@ module Dinobot case args when 'trigger' - m.respond [:say, m.channel, @config.data[:trigger][:global]] + m.respond [:say, m.channel, @config[:trigger][:global]] when 'debug' - m.respond [:say, m.channel, @config.data[:debug].to_s] + m.respond [:say, m.channel, @config[:debug].to_s] end end @@ -31,15 +31,15 @@ module Dinobot case key when 'trigger' - @config.data[:trigger][:global] = val + @config[:trigger][:global] = val @config.save when 'debug' case val when 'true' - @config.data[:debug] = true + @config[:debug] = true @config.save when 'false' - @config.data[:debug] = false + @config[:debug] = false @config.save end end |