diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-23 23:24:19 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-23 23:24:19 +0000 |
commit | bdc901984c5fe7fb08ae0fa217c21a9ea1ba1ff5 (patch) | |
tree | f971fe6321b6001d4d169fc8d5590e68f5503952 /lib/rbot | |
parent | 331da006da62c68bd80d688bdc844bbf1936c198 (diff) |
core/auth: missing help for who is
Diffstat (limited to 'lib/rbot')
-rw-r--r-- | lib/rbot/core/auth.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/rbot/core/auth.rb b/lib/rbot/core/auth.rb index 8f4d5322..877da6e9 100644 --- a/lib/rbot/core/auth.rb +++ b/lib/rbot/core/auth.rb @@ -263,6 +263,8 @@ class AuthModule < CoreBotModule return _("login [<botuser>] [<pass>]: logs in to the bot as botuser <botuser> with password <pass>. When using the full form, you must contact the bot in private. <pass> can be omitted if <botuser> allows login-by-mask and your netmask is among the known ones. if <botuser> is omitted too autologin will be attempted")
when "whoami"
return _("whoami: names the botuser you're linked to")
+ when "who"
+ return _("who is <user>: names the botuser <user> is linked to")
when /^permission/
case topic
when "syntax"
@@ -300,7 +302,7 @@ class AuthModule < CoreBotModule when "auth"
return _("auth <masterpassword>: log in as the bot owner; other commands: login, whoami, permission syntax, permissions [re]set, permissions view, user")
else
- return _("auth commands: auth, login, whoami, permission[s], user")
+ return _("auth commands: auth, login, whoami, who, permission[s], user")
end
end
|