summaryrefslogtreecommitdiff
path: root/lib/rbot/core
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-08-02 21:39:43 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-08-02 21:39:43 +0000
commit158056c6f68bbe75e4c9a33433e1502c445c26b8 (patch)
treebc1fd26ef887fd340453024ed353e8bfac20bb01 /lib/rbot/core
parenteee6a74ea1547b5c0e8757c64cace42fc9aea9bf (diff)
Fix message handling, comment out some debug messages
Diffstat (limited to 'lib/rbot/core')
-rw-r--r--lib/rbot/core/config.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rbot/core/config.rb b/lib/rbot/core/config.rb
index 47bed108..7eda780f 100644
--- a/lib/rbot/core/config.rb
+++ b/lib/rbot/core/config.rb
@@ -160,8 +160,6 @@ class ConfigModule < CoreBotModule
def help(topic="")
case topic
- when false
- "config module - bot configuration. usage: list, desc, get, set, unset, add, rm"
when "list"
"config list => list configuration modules, config list <module> => list configuration keys for module <module>"
when "get"
@@ -177,7 +175,9 @@ class ConfigModule < CoreBotModule
when "rm"
"config rm <value> from <key> => remove value <value> from key <key> if <key> is an array"
else
- "no help for config #{topic}"
+ "config module - bot configuration. usage: list, desc, get, set, unset, add, rm"
+ # else
+ # "no help for config #{topic}"
end
end