diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-14 11:50:47 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-14 11:50:47 +0000 |
commit | c1c2c954285afbcb352ddadcebed2ba004be41b2 (patch) | |
tree | 22c6b1b6df2c7b1c9e4c80d7c52e152a001effb2 /lib | |
parent | 3a71d6fa59b62a0660dbc377c0b71181ba2e4b98 (diff) |
config core botmodule: document 'nick', 'status'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rbot/core/config.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/rbot/core/config.rb b/lib/rbot/core/config.rb index d929fb39..cdd334f4 100644 --- a/lib/rbot/core/config.rb +++ b/lib/rbot/core/config.rb @@ -219,6 +219,10 @@ class ConfigModule < CoreBotModule # else
# "no help for config #{topic}"
end
+ when "nick"
+ _("nick <newnick> => change the bot nick to <newnick>, if possible")
+ when "status"
+ _("status => display some information on the bot's status")
when "save"
_("save => save current dynamic data and configuration")
when "rescan"
@@ -226,7 +230,7 @@ class ConfigModule < CoreBotModule when "version"
_("version => describes software version")
else
- _("config-related tasks: config, save, rescan, version")
+ _("config-related tasks: config, save, rescan, version, nick, status")
end
end
|