Added '/whoami' command

This commit is contained in:
Mattias Erming 2014-06-12 14:11:12 +02:00
parent 5e3abe2347
commit 03d8510486
3 changed files with 7 additions and 2 deletions

View File

@ -37,6 +37,7 @@ These are the commands currently implemented:
- [x] /slap
- [x] /topic
- [x] /voice
- [x] /whoami
- [x] /whois
## Install

View File

@ -30,6 +30,7 @@ $(function() {
"/slap",
"/topic",
"/voice",
"/whoami",
"/whois",
];

View File

@ -280,10 +280,13 @@ function input(data) {
}
break;
case "whoami":
var user = client.me;
case "query":
case "whois":
if (client && args[1]) {
client.whois(args[1]);
var user = user || args[1];
if (client && user) {
client.whois(user);
}
break;