]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - lib/rbot/core/config.rb
Fix stupid bug introduced with the new debugging messages. switch to kind_of? instead...
[user/henk/code/ruby/rbot.git] / lib / rbot / core / config.rb
index 3099a00a79aa2d5d50375032f2cf96ce56fa17f0..29a0b56467f2bc91fc797f1201207c91c786d244 100644 (file)
@@ -89,7 +89,7 @@ class ConfigModule < CoreBotModule
       m.reply "no such config key #{key}"\r
       return\r
     end\r
-    unless @bot.config.items[key].class <= BotConfigArrayValue\r
+    unless @bot.config.items[key].kind_of?(BotConfigArrayValue)\r
       m.reply "config key #{key} is not an array"\r
       return\r
     end\r
@@ -111,7 +111,7 @@ class ConfigModule < CoreBotModule
       m.reply "no such config key #{key}"\r
       return\r
     end\r
-    unless @bot.config.items[key].class <= BotConfigArrayValue\r
+    unless @bot.config.items[key].kind_of?(BotConfigArrayValue)\r
       m.reply "config key #{key} is not an array"\r
       return\r
     end\r