aboutsummaryrefslogtreecommitdiff
path: root/module/config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'module/config.rb')
-rw-r--r--module/config.rb10
1 files changed, 5 insertions, 5 deletions
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